]> 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>
Sun, 18 Nov 2018 00:55:23 +0000 (01:55 +0100)
indent/python.vim

index 6f846371c218beca24a0184d0bdbddb196a757d7..52a2966209d3de7898e8cdd47201eb198c3ebfd4 100644 (file)
@@ -77,9 +77,6 @@ if has('conceal')
 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')
@@ -104,7 +101,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)