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:
```vim
autocmd WinEnter * set cursorline
autocmd WinLeave * set nocursorline
autocmd InsertEnter * set nocursorline
autocmd InsertLeave * set cursorline
autocmd InsertLeave,WinEnter * set cursorline
autocmd InsertEnter,WinLeave * set nocursorline
```
#### Faster keyword completion