Join related lines

This commit is contained in:
Marco Hinz 2016-06-09 14:39:37 +02:00
parent 7db13688c0
commit 52ae475262

View File

@ -1974,10 +1974,8 @@ I love the cursorline, but I only want to use it in the current window and not
when being in insert mode: when being in insert mode:
```vim ```vim
autocmd WinEnter * set cursorline autocmd InsertLeave,WinEnter * set cursorline
autocmd WinLeave * set nocursorline autocmd InsertEnter,WinLeave * set nocursorline
autocmd InsertEnter * set nocursorline
autocmd InsertLeave * set cursorline
``` ```
#### Faster keyword completion #### Faster keyword completion