Re: :[count]tag can't jump to the [count] one when {ident} exist in different tag file ...

2015-05-16 Fir de Conversatie cs86661
ctags command = :!ctags --c-kinds=+px --c++-kinds=+px --fields=+iaS --extra=+q -f test.c.tags test.c :!ctags --c-kinds=+px --c++-kinds=+px --fields=+iaS --extra=+q -f test.h.tags test.h = -- -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply bel

Re: :[count]tag can't jump to the [count] one when {ident} exist in different tag file ...

2015-05-16 Fir de Conversatie cs86661
ctags command = !ctags --c-kinds=+px --c++-kinds=+px --fields=+iaS --extra=+q -f test.c.tags test.c !ctags --c-kinds=+px --c++-kinds=+px --fields=+iaS --extra=+q -f test.h.tags test.h = -- -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below

Re: :[count]tag can't jump to the [count] one when {ident} exist in different tag file ...

2015-05-16 Fir de Conversatie Christian Brabandt
Hi cs86661! On Sa, 16 Mai 2015, cs86661 wrote: > Hi all: > > test.c > = > #include > #include "test.h" > > void test() > { > } > > int main() > { > test(); > return 0; > } > = > > test.h > = > void test(); > = > > VIM > = > :set tags=test.h.tags,test.c.tags > > :tse