Is there a way to auto complete a path in vim as in /v [tab] -> /var/ in the command line
I've tested ctrl x ctrl f, but it is not exactly what I'm looking for
Is there a way to auto complete a path in vim as in /v [tab] -> /var/ in the command line
I've tested ctrl x ctrl f, but it is not exactly what I'm looking for
The Ctrl-X Ctrl-F can be used in insert mode as well. I think it does just what you want.
If you want to complete everything with tab (filename completion as well as onmicompletion and stuff) I suggest the following vim plugin: "neocomplcache". It features many autocompletion options and can be highly customized. That makes it also a bit complex to configure, however.
Here is the link to the plugin github page: https://github.com/Shougo/neocomplcache.