From 7372923fdaa2704414deacb68dd5d8e42c8fc2e1 Mon Sep 17 00:00:00 2001 From: Michael Sanders Date: Mon, 23 Mar 2009 13:04:09 -0400 Subject: [PATCH] fixed bug with incorrect path to snippets --- after/plugin/snipMate.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/after/plugin/snipMate.vim b/after/plugin/snipMate.vim index 24c1a9d..7edcd37 100644 --- a/after/plugin/snipMate.vim +++ b/after/plugin/snipMate.vim @@ -14,7 +14,7 @@ snor bi " By default load snippets in ~/.vim/snippets/ if !exists('snippets_dir') - let snippets_dir = $HOME.'/'.finddir('snippets', &rtp).'/' + let snippets_dir = finddir('snippets', &rtp).'/' endif if empty(snippets_dir) | finish | endif