vim

Pure usage without plugins

  • finding files

" Search files into subfolders
" Provides tab-completion for all file-related tasks
set path+=**
" Display all matching files when we tab complete
set wildmenu
  • autocompletion

    • ^n suggests autocompletions (^p choosing autocompletion is reverse order)

How to install Vundle

Link

vim +PluginInstall +qall

Last updated