mirror of
https://github.com/junegunn/goyo.vim.git
synced 2025-11-18 08:13:43 -05:00
Updated Customization (markdown)
@@ -49,5 +49,23 @@ function! g:goyo_after()
|
|||||||
call lightline#enable()
|
call lightline#enable()
|
||||||
endfunction
|
endfunction
|
||||||
|
|
||||||
|
let g:goyo_callbacks = [function('g:goyo_before'), function('g:goyo_after')]
|
||||||
|
```
|
||||||
|
|
||||||
|
### ZoomWin
|
||||||
|
|
||||||
|
- by [EPNGH](https://github.com/EPNGH)
|
||||||
|
|
||||||
|
```vim
|
||||||
|
function! g:goyo_before()
|
||||||
|
delcommand ZoomWin
|
||||||
|
delcommand <Plug>ZoomWin
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
function! g:goyo_after()
|
||||||
|
command! ZoomWin call ZoomWin()
|
||||||
|
command! <Plug>ZoomWin call ZoomWin()
|
||||||
|
endfunction
|
||||||
|
|
||||||
let g:goyo_callbacks = [function('g:goyo_before'), function('g:goyo_after')]
|
let g:goyo_callbacks = [function('g:goyo_before'), function('g:goyo_after')]
|
||||||
```
|
```
|
||||||
Reference in New Issue
Block a user