From 1ace98cb0d3c3f32290cbbac0f7234b45bb56ec5 Mon Sep 17 00:00:00 2001 From: Sergey Matveev Date: Fri, 3 Apr 2020 13:38:28 +0300 Subject: [PATCH] Fix uctags -kinds invocation --- vim/.vim/plugin/ctags.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vim/.vim/plugin/ctags.vim b/vim/.vim/plugin/ctags.vim index 0baeb3c..859020e 100644 --- a/vim/.vim/plugin/ctags.vim +++ b/vim/.vim/plugin/ctags.vim @@ -15,8 +15,8 @@ function! s:ctags(lang, onlyCmd, verbose) let cmdline = [ \'uctags', \'--languages=' . a:lang, - \'--kind-python=-i', - \'--kind-c++=+p', + \'--python-kinds=-i', + \'--c++-kinds=+p', \'--recurse', \] if a:verbose == v:true | let cmdline += ['--verbose'] | endif -- 2.44.0