From: Hynek Schlawack Date: Tue, 3 Mar 2015 10:47:28 +0000 (+0100) Subject: Merge pull request #38 from blueyed/doc-fix-sw-note X-Git-Url: https://git.madduck.net/etc/vim.git/commitdiff_plain/77cfc43f3cb7ae9082212b94c8c75c4ce178041c?hp=c9d252f33d858267818d1354af81d264b276a4b7 Merge pull request #38 from blueyed/doc-fix-sw-note doc: fix comment about 'sw': 0 is used to follow 'ts' --- diff --git a/indent/python.vim b/indent/python.vim index 461e30c..026a056 100644 --- a/indent/python.vim +++ b/indent/python.vim @@ -50,7 +50,8 @@ let s:skip_special_chars = 'synIDattr(synID(line("."), col("."), 0), "name") ' . let s:skip_search = 'synIDattr(synID(line("."), col("."), 0), "name") ' . \ '=~? "comment"' -" compatibility with vim patch 7.3.629: 'sw' can be set to -1 to follow 'ts' +" Use 'shiftwidth()' instead of '&sw'. +" (Since Vim patch 7.3.629, 'shiftwidth' can be set to 0 to follow 'tabstop'). if exists('*shiftwidth') function! s:sw() return shiftwidth()