From 488c0555e47e2aabe273c635f7dd233e985311a6 Mon Sep 17 00:00:00 2001 From: Peter Vandenberk Date: Thu, 28 Aug 2025 20:46:10 +0100 Subject: [PATCH] =?UTF-8?q?Update=20README.mkd:=20`off`=20=E2=86=92=20`no`?= =?UTF-8?q?=20for=20`signcolumn`?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The valid values for `signcolumn` are '`auto`' ,'`no`', '`yes'` and '`number'` but not '`off'`: ``` E474: Invalid argument: signcolumn=off ``` Thanks! --- README.mkd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.mkd b/README.mkd index 2299dc7..5f6e7b9 100644 --- a/README.mkd +++ b/README.mkd @@ -81,7 +81,7 @@ Second, ensure your `updatetime` and `signcolumn` options are set appropriately. When you make a change to a file tracked by git, the diff markers should appear automatically after a short delay. The delay is governed by vim's `updatetime` option; the default value is `4000`, i.e. 4 seconds, but I suggest reducing it to around 100ms (add `set updatetime=100` to your vimrc). Note `updatetime` also controls the delay before vim writes its swap file (see `:help updatetime`). -The `signcolumn` option can have any value except `'off'`. +The `signcolumn` option can have any value except `'no'`. ### Windows