diff options
-rw-r--r-- | src/nvim/ex_getln.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/nvim/ex_getln.c b/src/nvim/ex_getln.c index ac71e2df7e..247b9175aa 100644 --- a/src/nvim/ex_getln.c +++ b/src/nvim/ex_getln.c @@ -3524,8 +3524,9 @@ static int ccheck_abbr(int c) { int spos = 0; - if (p_paste || no_abbr) /* no abbreviations or in paste mode */ - return FALSE; + if (p_paste || no_abbr) { // no abbreviations or in paste mode + return false; + } // Do not consider '<,'> be part of the mapping, skip leading whitespace. // Actually accepts any mark. |