From 52ae47526231b4f68466d49fc3690147e583dca9 Mon Sep 17 00:00:00 2001 From: Marco Hinz Date: Thu, 9 Jun 2016 14:39:37 +0200 Subject: [PATCH] Join related lines --- README.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 8e9b004..e54e92a 100644 --- a/README.md +++ b/README.md @@ -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