Hi there, here is a patch adding support for matchit plugin in kconfig.vim. Could you please apply it to the source tree?
Thanks a lot! Kind regards, Petr -- -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php --- You received this message because you are subscribed to the Google Groups "vim_dev" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
# HG changeset patch # User Petr Vorel <[email protected]> # Date 1429913907 -7200 # Sat Apr 25 00:18:27 2015 +0200 # Node ID f8140e7d83f113ac54ffe948620b85ea338d4b37 # Parent 18d84ed365a52397bacdbaa8bbbcd197976e299b kconfig.vim: support for matchit diff -r 18d84ed365a5 -r f8140e7d83f1 runtime/ftplugin/kconfig.vim --- a/runtime/ftplugin/kconfig.vim Wed Apr 22 22:18:22 2015 +0200 +++ b/runtime/ftplugin/kconfig.vim Sat Apr 25 00:18:27 2015 +0200 @@ -14,5 +14,10 @@ setlocal comments=:# commentstring=#\ %s formatoptions-=t formatoptions+=croql +" For matchit.vim +if exists("loaded_matchit") + let b:match_words = '^\<menu\>:\<endmenu\>,^\<if\>:\<endif\>,^\<choice\>:\<endchoice\>' +endif + let &cpo = s:cpo_save unlet s:cpo_save
