Adds ability to load templates in vim

Will add to it at some point so I can view the template in fzf's preview
Jonathan Hodgson 2 years ago
parent f4393373dc
commit f12f916255
  1. 11
      nvim/.config/nvim/plugin/fzf.vim

@ -9,3 +9,14 @@ nnoremap <leader>b = :FzfBuffers<cr>
nnoremap <leader>h = :FzfHelptags<cr>
" The space is important at the end of this mapping
nnoremap <leader>/ = :FzfRg
function! s:read_template_into_buffer(template)
" has to be a function to avoid the extra space fzf#run insers otherwise
execute '0r ~/Templates/'.a:template
endfunction
command! -bang -nargs=* LoadTemplate call fzf#run({
\ 'source': 'ls -1 ~/Templates',
\ 'down': 20,
\ 'sink': function('<sid>read_template_into_buffer')
\ })

Loading…
Cancel
Save