Skip to content

Commit b1d1468

Browse files
committed
Update autopep8
1 parent ad90cfa commit b1d1468

File tree

2 files changed

+1524
-582
lines changed

2 files changed

+1524
-582
lines changed

pymode/__init__.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,13 @@ def auto():
1212
from .autopep8 import fix_file
1313

1414
class Options(object):
15-
aggressive = 0
16-
line_range = None
15+
aggressive = 2
1716
diff = False
17+
experimental = True
1818
ignore = vim.eval('g:pymode_lint_ignore')
1919
in_place = True
20+
indent_size = int(vim.eval('&tabstop'))
21+
line_range = None
2022
max_line_length = 79
2123
pep8_passes = 100
2224
recursive = False
@@ -35,4 +37,3 @@ def get_documentation():
3537
help(vim.eval('a:word'))
3638
sys.stdout, out = _, sys.stdout.getvalue()
3739
vim.current.buffer.append(str(out).splitlines(), 0)
38-

0 commit comments

Comments
 (0)