Update autocommands examples

This commit is contained in:
micbou 2017-05-05 21:12:41 +02:00
parent ba779afffb
commit f7db6a1f36
No known key found for this signature in database
GPG Key ID: C7E8FD1F3BDA1E05
2 changed files with 12 additions and 8 deletions

View File

@ -1652,9 +1652,11 @@ For instance:
```viml
function! s:CustomizeYcmLocationWindow()
" Move the window to the top of the screen.
execute "wincmd K"
wincmd K
" Set the window height to 5.
execute "5wincmd _"
5wincmd _
" Switch back to working window.
wincmd p
endfunction
autocmd User YcmLocationOpened call s:CustomizeYcmLocationWindow()
@ -1671,9 +1673,9 @@ instance:
```viml
function! s:CustomizeYcmQuickFixWindow()
" Move the window to the top of the screen.
execute "wincmd K"
wincmd K
" Set the window height to 5.
execute "5wincmd _"
5wincmd _
endfunction
autocmd User YcmQuickFixOpened call s:CustomizeYcmQuickFixWindow()

View File

@ -1946,9 +1946,11 @@ For instance:
>
function! s:CustomizeYcmLocationWindow()
" Move the window to the top of the screen.
execute "wincmd K"
wincmd K
" Set the window height to 5.
execute "5wincmd _"
5wincmd _
" Switch back to working window.
wincmd p
endfunction
autocmd User YcmLocationOpened call s:CustomizeYcmLocationWindow()
@ -1965,9 +1967,9 @@ quickfix window. For instance:
>
function! s:CustomizeYcmQuickFixWindow()
" Move the window to the top of the screen.
execute "wincmd K"
wincmd K
" Set the window height to 5.
execute "5wincmd _"
5wincmd _
endfunction
autocmd User YcmQuickFixOpened call s:CustomizeYcmQuickFixWindow()