File tree 2 files changed +7
-1
lines changed
2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -307,6 +307,8 @@ def __init__(self):
307
307
'autoload' , 'pathogen.vim' ))
308
308
fd .write ('call pathogen#runtime_append_all_bundles()\n ' )
309
309
fd .write ('source %s\n ' % join (self .ohmyvim , 'theme.vim' ))
310
+ fd .write ('source %s\n ' % join (self .runtime , 'oh-my-vim' ,
311
+ 'plugin' , 'ohmyvim.vim' ))
310
312
311
313
if 'VIRTUAL_ENV' in os .environ :
312
314
binary = join (os .getenv ('VIRTUAL_ENV' ), 'bin' , 'oh-my-vim' )
@@ -341,7 +343,6 @@ def __init__(self):
341
343
with open (self .gvimrc , 'w' ) as fd :
342
344
fd .write (GVIMRC )
343
345
344
-
345
346
def log (self , value , * args ):
346
347
if args :
347
348
value = value % args
Original file line number Diff line number Diff line change 1
1
2
2
" oh-my-vim related command / tools
3
3
4
+ if exists (" g:loaded_oh_my_vim" ) || &cp
5
+ finish
6
+ endif
7
+ let g: loaded_oh_my_vim = 1
8
+
4
9
command ! -complete =custom ,OhMyVimCmpl -nargs =+ OhMyVim :call OhMyVim (" <args>" )
5
10
6
11
function ! OhMyVim (args )
You can’t perform that action at this time.
0 commit comments