diff options
author | Cody Hiar <codyfh@gmail.com> | 2017-02-21 16:10:10 -0700 |
---|---|---|
committer | Cody Hiar <codyfh@gmail.com> | 2017-02-21 16:10:10 -0700 |
commit | 3b132955f4f08fac0f00e3605d73fb308a8bd8b3 (patch) | |
tree | 050a76ea0a23d590975c1f662e96f76d83958cea /plugin | |
parent | 574e64f42f36838c9b1de72fa4b88c7d962ba8e1 (diff) |
Tags will ignore imports
Diffstat (limited to 'plugin')
-rw-r--r-- | plugin/vim-options.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/vim-options.vim b/plugin/vim-options.vim index 5abc841..f11e3e6 100644 --- a/plugin/vim-options.vim +++ b/plugin/vim-options.vim @@ -119,7 +119,7 @@ function! CleverTab() endfunction inoremap <Tab> <C-R>=CleverTab()<CR> " Ctags for python project -command! MakeTagsPython !ctags --languages=python -R . +command! MakeTagsPython !ctags --languages=python --python-kinds=-i -R . " Command for figuring out highlight group map <leader>hi :echo "hi<" . synIDattr(synID(line("."),col("."),1),"name") . '> trans<' . synIDattr(synID(line("."),col("."),0),"name") . "> lo<" . synIDattr(synIDtrans(synID(line("."),col("."),1)),"name") . ">" . " FG:" . synIDattr(synIDtrans(synID(line("."),col("."),1)),"fg#")<CR> " Turn off syntax highlighting |