Skip to content

Commit

Permalink
Fix #53 virtual pure function support
Browse files Browse the repository at this point in the history
  • Loading branch information
Shougo committed Sep 23, 2015
1 parent 0686316 commit 76490c3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions autoload/unite/sources/outline/modules/ctags.vim
Original file line number Diff line number Diff line change
Expand Up @@ -371,7 +371,7 @@ endfunction
" l local variables
" m class, struct, and union members
" [n] namespaces
" p function prototypes
" [p] function prototypes, pure virtual functions
" [s] structure names
" [t] typedefs
" [u] union names
Expand All @@ -380,7 +380,7 @@ endfunction
"
let s:Ctags.lang_info.cpp = {
\ 'name': 'C++',
\ 'ctags_options': ' --c++-kinds=cdfgnstu ',
\ 'ctags_options': ' --c++-kinds=cdfgnstup ',
\ 'scope_kinds' : ['namespace', 'class', 'struct'],
\ 'scope_delim' : '::',
\ }
Expand Down

0 comments on commit 76490c3

Please sign in to comment.