]> 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:

Inline s:skip_search
authorDaniel Hahler <git@thequod.de>
Fri, 16 Nov 2018 09:33:01 +0000 (10:33 +0100)
committerDaniel Hahler <git@thequod.de>
Fri, 16 Nov 2018 09:33:01 +0000 (10:33 +0100)
indent/python.vim

index e3c2352135fc73aa9aabe0ee20417e1937cfdce6..b3631a1f38bf9b360a09400e4400b2054ff1f74f 100644 (file)
@@ -94,9 +94,6 @@ if get(g:, 'python_pep8_indent_skip_concealed', 0)
 endif
 
 
-let s:skip_search = 'synIDattr(synID(line("."), col("."), 0), "name") ' .
-            \ '=~? "comment"'
-
 " Use 'shiftwidth()' instead of '&sw'.
 " (Since Vim patch 7.3.629, 'shiftwidth' can be set to 0 to follow 'tabstop').
 if exists('*shiftwidth')
@@ -121,7 +118,9 @@ function! s:find_opening_paren(...)
     endif
 
     " Return if cursor is in a comment.
-    exe 'if' s:skip_search '| return [0, 0] | endif'
+    if synIDattr(synID(line('.'), col('.'), 0), 'name') =~? 'comment'
+        return [0, 0]
+    endif
 
     let nearest = [0, 0]
     for [p, maxoff] in items(s:paren_pairs)