]> git.madduck.net Git - etc/vim.git/commitdiff

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

Merge pull request #39 from blueyed/fix-indent
authorHynek Schlawack <hs@ox.cx>
Tue, 3 Mar 2015 11:12:28 +0000 (12:12 +0100)
committerHynek Schlawack <hs@ox.cx>
Tue, 3 Mar 2015 11:12:28 +0000 (12:12 +0100)
minor style: fix indenting for multiline statement

1  2 
indent/python.vim

index 026a0565fd66f840c4e693b09abf4dcc12568707,e8f484ba4ddc61575312bc15b77bf68cd1179e5a..4dd4c6773e7a572aa226d62ddfec6f68bfb28e0c
@@@ -45,13 -45,12 +45,13 @@@ let s:stop_statement = '^\s*\(break\|co
  
  " Skip strings and comments
  let s:skip_special_chars = 'synIDattr(synID(line("."), col("."), 0), "name") ' .
-            \ '=~? "string\\|comment"'
+             \ '=~? "string\\|comment"'
  
  let s:skip_search = 'synIDattr(synID(line("."), col("."), 0), "name") ' .
-            \ '=~? "comment"'
+             \ '=~? "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()