diff options
author | Christian Chiarulli <[email protected]> | 2020-05-17 02:04:31 -0400 |
---|---|---|
committer | GitHub <[email protected]> | 2020-05-17 02:04:31 -0400 |
commit | 275a53ec2cb1f42435046f70ff91032c79e6396c (patch) | |
tree | 3050ae1246c6c5c05305402a4ccebc5f94cb1653 | |
parent | 88f156841b8828e179f6183db5ed43da4b724127 (diff) | |
parent | edcdd7cc832dcc079017d8b234389e83f0c7e36f (diff) |
Merge pull request #17 from mandaputtra/mandaputtra-inline-info
change --info-inline to --inline-info.
-rw-r--r-- | plug-config/fzf.vim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plug-config/fzf.vim b/plug-config/fzf.vim index 2e40f6e4..fbb5457f 100644 --- a/plug-config/fzf.vim +++ b/plug-config/fzf.vim @@ -22,7 +22,7 @@ let g:fzf_tags_command = 'ctags -R' " Border color let g:fzf_layout = {'up':'~90%', 'window': { 'width': 0.8, 'height': 0.8,'yoffset':0.5,'xoffset': 0.5, 'highlight': 'Todo', 'border': 'sharp' } } -let $FZF_DEFAULT_OPTS = '--layout=reverse --info=inline' +let $FZF_DEFAULT_OPTS = '--layout=reverse --inline-info' let $FZF_DEFAULT_COMMAND="rg --files --hidden --glob '!.git/**'" "-g '!{node_modules,.git}' @@ -44,7 +44,7 @@ let g:fzf_colors = "Get Files command! -bang -nargs=? -complete=dir Files - \ call fzf#vim#files(<q-args>, fzf#vim#with_preview({'options': ['--layout=reverse', '--info=inline']}), <bang>0) + \ call fzf#vim#files(<q-args>, fzf#vim#with_preview({'options': ['--layout=reverse', '--inline-info']}), <bang>0) " Get text in files with Rg |