1
0
Fork 0

neovim: Fix syntax error in ;f

This commit is contained in:
Jeremy Kaplan 2020-09-28 14:13:27 -07:00
commit fb1b92307b

View file

@ -113,7 +113,7 @@ map <silent> ;x :x<CR>
set wildignore+=*.swp,*~ set wildignore+=*.swp,*~
map <silent> ;b :Buffers<CR> map <silent> ;b :Buffers<CR>
map <silent> ;f :call fzf#run({'source': 'rg --files --hidden', 'sink': 'e', options: '--multi'})<CR> map <silent> ;f :call fzf#run({'source': 'rg --files --hidden', 'sink': 'e', 'options': '--multi'})<CR>
function! s:escape(path) function! s:escape(path)
return substitute(a:path, ' ', '\\ ', 'g') return substitute(a:path, ' ', '\\ ', 'g')