From fb1b92307b86493934617ac6727b0edece1e819f Mon Sep 17 00:00:00 2001 From: Jeremy Kaplan Date: Mon, 28 Sep 2020 14:13:27 -0700 Subject: [PATCH] neovim: Fix syntax error in ;f --- neovim/init.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/neovim/init.vim b/neovim/init.vim index 838be09..25eeb1a 100644 --- a/neovim/init.vim +++ b/neovim/init.vim @@ -113,7 +113,7 @@ map ;x :x set wildignore+=*.swp,*~ map ;b :Buffers -map ;f :call fzf#run({'source': 'rg --files --hidden', 'sink': 'e', options: '--multi'}) +map ;f :call fzf#run({'source': 'rg --files --hidden', 'sink': 'e', 'options': '--multi'}) function! s:escape(path) return substitute(a:path, ' ', '\\ ', 'g')