1
0
mirror of https://github.com/amix/vimrc synced 2025-06-16 01:25:00 +08:00

Updated plugins. Removed the tabstop merge that 010c2940ce introduced

This commit is contained in:
amix
2014-10-14 14:30:33 +01:00
parent d283422444
commit fe77d23852
99 changed files with 1142 additions and 359 deletions

View File

@ -62,7 +62,7 @@ function! s:markdown_room()
exec( "hi StatusLineNC " . l:highlightfgbgcolor )
endfunction
function! g:Zenroom_goyo_before()
function! s:zenroom_goyo_before()
if !has("gui_running")
return
endif
@ -73,7 +73,7 @@ function! g:Zenroom_goyo_before()
endif
endfunction
function! g:Zenroom_goyo_after()
function! s:zenroom_goyo_after()
if !has("gui_running")
return
endif
@ -87,4 +87,4 @@ function! g:Zenroom_goyo_after()
endif
endfunction
let g:goyo_callbacks = [ function('g:Zenroom_goyo_before'), function('g:Zenroom_goyo_after') ]
let g:goyo_callbacks = [ function('s:zenroom_goyo_before'), function('s:zenroom_goyo_after') ]