spacevim/bundle/neosnippet.vim/autoload/vim_snippets.vim

12 lines
286 B
VimL
Raw Normal View History

2024-08-21 14:17:26 +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