Update g:goyo_callbacks example (#8)

This commit is contained in:
Junegunn Choi
2013-12-14 02:21:02 +09:00
parent 6bad8ec964
commit 6011742c29

View File

@@ -43,11 +43,15 @@ callbacks as follows in your .vimrc.
```vim
function! s:goyo_before()
silent !tmux set status off
set noshowmode
set noshowcmd
" ...
endfunction
function! s:goyo_after()
silent !tmux set status on
set showmode
set showcmd
" ...
endfunction