Update g:goyo_callbacks example

This commit is contained in:
Junegunn Choi
2013-12-10 00:36:52 +09:00
parent acf59a4507
commit 6bad8ec964

View File

@@ -42,11 +42,13 @@ callbacks as follows in your .vimrc.
```vim
function! s:goyo_before()
"
silent !tmux set status off
" ...
endfunction
function! s:goyo_after()
"
silent !tmux set status on
" ...
endfunction
let g:goyo_callbacks = [function('s:goyo_before'), function('s:goyo_after')]