1
0
Fork 0
mirror of synced 2024-07-26 18:11:12 -04:00

Fixed issue #48 regarding snippet expansion brake

The glob pattern of pathogen is {} and not *
The syntax introduced in commit f2d6402 broke the snippet expansion
It is now fixed
This commit is contained in:
Jeremy Carrier 2014-02-27 20:43:16 +01:00
parent 8c9210dca4
commit e64e0f1618

View file

@ -8,8 +8,8 @@
""""""""""""""""""""""""""""""
" => Load pathogen paths
""""""""""""""""""""""""""""""
call pathogen#infect('~/.vim_runtime/sources_forked/*')
call pathogen#infect('~/.vim_runtime/sources_non_forked/*')
call pathogen#infect('~/.vim_runtime/sources_forked/{}')
call pathogen#infect('~/.vim_runtime/sources_non_forked/{}')
call pathogen#helptags()
""""""""""""""""""""""""""""""