diff options
-rw-r--r-- | README.md | 3 | ||||
-rw-r--r-- | keys/which-key.vim | 1 | ||||
-rw-r--r-- | vim-plug/plugins.vim | 4 |
3 files changed, 6 insertions, 2 deletions
@@ -136,6 +136,9 @@ Example: :UpdateRemotePlugins ``` +To replace in file make sure to specify `%:p` +To replace across project specify `**/*.<your_extension>` + ## TabNine To use TabNine enter the following in a buffer: diff --git a/keys/which-key.vim b/keys/which-key.vim index fc7c2036..048766a4 100644 --- a/keys/which-key.vim +++ b/keys/which-key.vim @@ -119,6 +119,7 @@ let g:which_key_map.d = { \ } " f is for find and replace + " \ 'f' : [':Farr' , 'file'], let g:which_key_map.f = { \ 'name' : '+find & replace' , \ 'f' : [':Farr --source=vimgrep' , 'file'], diff --git a/vim-plug/plugins.vim b/vim-plug/plugins.vim index bf8e68fe..442e3ffa 100644 --- a/vim-plug/plugins.vim +++ b/vim-plug/plugins.vim @@ -87,7 +87,8 @@ call plug#begin('~/.config/nvim/autoload/plugged') " undo time travel Plug 'mbbill/undotree' " Find and replace - Plug 'ChristianChiarulli/far.vim' + " Plug 'ChristianChiarulli/far.vim' + Plug 'brooth/far.vim' " Auto change html tags Plug 'AndrewRadev/tagalong.vim' " live server @@ -168,7 +169,6 @@ call plug#begin('~/.config/nvim/autoload/plugged') " Plug 'neomake/neomake' " Plug 'mhinz/vim-signify' " Plug 'preservim/nerdcommenter' - " Plug 'brooth/far.vim' " Plug 'atishay/far.vim' " Plug 'romgrk/lib.kom' " Plug 'brooth/far.vim' |