1
0
Fork 0

nvim: Include hidden files in ;f

This commit is contained in:
Jeremy Kaplan 2021-11-16 18:40:41 -08:00
commit b217105c0b

View file

@ -111,7 +111,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': 'fd --type f', 'sink': 'e', 'options': '--multi'})<CR> map <silent> ;f :call fzf#run({'source': 'fd --hidden --type f', 'sink': 'e', 'options': '--multi'})<CR>
function! s:escape(path) function! s:escape(path)
return substitute(a:path, ' ', '\\ ', 'g') return substitute(a:path, ' ', '\\ ', 'g')