1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-24 05:30:07 +08:00
SpaceVim/bundle/neosnippet.vim/autoload/vim_snippets.vim

12 lines
286 B
VimL
Raw Normal View History

2020-06-13 14:06:35 +08:00
" For honza-snippets function.
function! vim_snippets#Filename(...) abort
let filename = expand('%:t:r')
if filename ==# ''
return a:0 == 2 ? a:2 : ''
elseif a:0 == 0 || a:1 ==# ''
return filename
else
return substitute(a:1, '$1', filename, 'g')
endif
endfunction