Re: vim9 exported functions not recognized by ctags

2023-12-18 Thread Lifepillar
On 2023-12-16, Nicolas wrote: > this is mine .ctags.d > > --kinddef-vim=e,export,function,"Vim 9 exported functions" > --kinddef-vim=f,function,"Vim 9 non-exported functions" > --kinddef-vim=g,global,"Vim 9 global variables" > --kinddef-vim=K,const,Vim 9 constants >

Re: vimgrep on files in 'path'

2023-12-18 Thread 'Tristan Kapous' via vim_use
Hi! You could use the arglist for this. I'm not sure how to set it from a path but I think you'll find a way to do it. Once your arglist is set, use `vimgrep /pattern/ ##` to grep the files in the arglist. Regards, Tris' Original Message On Dec 18, 2023, 20:27, Arun wrote: >

vimgrep on files in 'path'

2023-12-18 Thread Arun
Hi there, I wonder if there is any "grep" like counterpart for the ":find" command in vim. Today, ":find" helps one find any file in the 'path'. It would be nice to perform a search for a pattern in the files reachable via 'path'. I could then invoke, say, :findgrep /mypattern/ **/*def.h