Skip to content

Commit 860a67d

Browse files
committed
add flag to disable startup setlocal indent
1 parent 8b215aa commit 860a67d

File tree

2 files changed

+12
-5
lines changed

2 files changed

+12
-5
lines changed

README.rst

+7-2
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,8 @@ Follow the instructions on installing NeoBundle_ and add the appropriate NeoBund
5656
Configuration
5757
-------------
5858

59-
python_pep8_indent_multiline_string
60-
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
59+
g:python_pep8_indent_multiline_string
60+
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
6161

6262
You can configure the initial indentation of multiline strings using ``g:python_pep8_indent_multiline_string`` (which can also be set per buffer).
6363
This defaults to ``0``, which means that multiline strings are not indented.
@@ -74,6 +74,11 @@ With content already, it will be aligned to the opening parenthesis::
7474

7575
Existing indentation (including ``0``) in multiline strings will be kept, so this setting only applies to the indentation of new/empty lines.
7676

77+
g:python_pep8_setlocal_indent
78+
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
79+
80+
By default, this plugin sets ``shiftwidth``, ``tabstop``, and ``softtabstop`` to 4 on startup. This behavior can be disabled adding ``let g:python_pep8_setlocal_indent = 0`` to your vimrc.
81+
7782

7883
Notes
7984
-----

indent/python.vim

+5-3
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,11 @@ setlocal nolisp
3030
setlocal autoindent
3131
setlocal indentexpr=GetPythonPEPIndent(v:lnum)
3232
setlocal indentkeys=!^F,o,O,<:>,0),0],0},=elif,=except
33-
setlocal tabstop=4
34-
setlocal softtabstop=4
35-
setlocal shiftwidth=4
33+
if get(g:, 'python_pep8_setlocal_indent', 1)
34+
setlocal tabstop=4
35+
setlocal softtabstop=4
36+
setlocal shiftwidth=4
37+
endif
3638

3739
if !exists('g:python_pep8_indent_multiline_string')
3840
let g:python_pep8_indent_multiline_string = 0

0 commit comments

Comments
 (0)