1
0
mirror of https://github.com/gryf/snipmate.vim.git synced 2025-12-29 01:42:36 +01:00

fixed bug with incorrect path to snippets

This commit is contained in:
Michael Sanders
2009-03-23 13:04:09 -04:00
parent 99653dc5d5
commit 7372923fda

View File

@@ -14,7 +14,7 @@ snor <left> <esc>bi
" By default load snippets in ~/.vim/snippets/<filetype> " By default load snippets in ~/.vim/snippets/<filetype>
if !exists('snippets_dir') if !exists('snippets_dir')
let snippets_dir = $HOME.'/'.finddir('snippets', &rtp).'/' let snippets_dir = finddir('snippets', &rtp).'/'
endif endif
if empty(snippets_dir) | finish | endif if empty(snippets_dir) | finish | endif