From 783562e20a97397086cd0dffeb30f8edfb752f2f Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Thu, 10 Jul 2014 18:03:29 -0700 Subject: [PATCH] Updated Customization (markdown) --- Customization.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Customization.md b/Customization.md index fc00661..87a0b5e 100644 --- a/Customization.md +++ b/Customization.md @@ -1,7 +1,7 @@ ## Callbacks for GVim ```vim -function! Goyo_before() +function! GoyoBefore() if has('gui_running') set fullscreen set background=light @@ -11,7 +11,7 @@ function! Goyo_before() endif endfunction -function! Goyo_after() +function! GoyoAfter() if has('gui_running') set nofullscreen set background=dark @@ -21,7 +21,7 @@ function! Goyo_after() endif endfunction -let g:goyo_callbacks = [function('Goyo_before'), function('Goyo_after')] +let g:goyo_callbacks = [function('GoyoBefore'), function('GoyoAfter')] ``` ## Disabling plugins