We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ad90cfa commit b1d1468Copy full SHA for b1d1468
pymode/__init__.py
@@ -12,11 +12,13 @@ def auto():
12
from .autopep8 import fix_file
13
14
class Options(object):
15
- aggressive = 0
16
- line_range = None
+ aggressive = 2
17
diff = False
+ experimental = True
18
ignore = vim.eval('g:pymode_lint_ignore')
19
in_place = True
20
+ indent_size = int(vim.eval('&tabstop'))
21
+ line_range = None
22
max_line_length = 79
23
pep8_passes = 100
24
recursive = False
@@ -35,4 +37,3 @@ def get_documentation():
35
37
help(vim.eval('a:word'))
36
38
sys.stdout, out = _, sys.stdout.getvalue()
39
vim.current.buffer.append(str(out).splitlines(), 0)
-
0 commit comments