We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fbdb8ca commit f8cdd89Copy full SHA for f8cdd89
autoload/pymode/lint.vim
@@ -4,7 +4,8 @@ fun! pymode#lint#auto() "{{{
4
if !pymode#save()
5
return 0
6
endif
7
- PymodePython pymode.auto()
+ PymodePython from pymode import auto
8
+ PymodePython auto()
9
cclose
10
edit
11
call pymode#wide_message("AutoPep8 done.")
pymode/__init__.py
@@ -15,12 +15,12 @@ class Options(object):
15
aggressive = 0
16
line_range = None
17
diff = False
18
- ignore = ''
+ ignore = vim.eval('g:pymode_lint_ignore')
19
in_place = True
20
max_line_length = 79
21
pep8_passes = 100
22
recursive = False
23
- select = ''
+ select = vim.eval('g:pymode_lint_select')
24
verbose = 0
25
26
fix_file(vim.current.buffer.name, Options)
0 commit comments