|
|
|
|
|
by ezy
5032 days ago
|
|
I prefer the builtin vim facilities. I use two features already built into vim. (1) "*" and "**" (ugh stars are italics markers in this editor, how do you escape them?) works in tab completion for both :ts & :e and (2) the --file-tags argument to exhuberant ctags. Oh and one more, :ts supports regexes. :ts *Something*xml<tab> (or /Something.*xml<tab>)
will do what you expect. As will :e **/somewhere/*myfile*.
That said, I'm going to check ctrlp out to see if I'm missing something good. :-) |
|