aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/option.c
diff options
context:
space:
mode:
authorJames McCoy <jamessan@jamessan.com>2017-04-19 23:15:45 -0400
committerGitHub <noreply@github.com>2017-04-19 23:15:45 -0400
commit462c53eb3ea256bb85eb3916400d984347f0626f (patch)
treee196f6fa8b9c03009f383349c86b5ca79acf7199 /src/nvim/option.c
parentf0c12012d99b33474bd6bb5dcb0ee3a6c6808789 (diff)
parentcb02137dfac7357650a2e9cc32acb66326e59058 (diff)
downloadrneovim-462c53eb3ea256bb85eb3916400d984347f0626f.tar.gz
rneovim-462c53eb3ea256bb85eb3916400d984347f0626f.tar.bz2
rneovim-462c53eb3ea256bb85eb3916400d984347f0626f.zip
Merge pull request #6547 from jamessan/vim-7.4.2152
vim-patch:7.4.2152,7.4.2165,7.4.2173,7.4.2179,7.4.2209
Diffstat (limited to 'src/nvim/option.c')
-rw-r--r--src/nvim/option.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/option.c b/src/nvim/option.c
index 0070a0056d..8748406ba4 100644
--- a/src/nvim/option.c
+++ b/src/nvim/option.c
@@ -4818,7 +4818,7 @@ int find_key_option_len(const char_u *arg, size_t len)
} else {
arg--; // put arg at the '<'
modifiers = 0;
- key = find_special_key(&arg, len + 1, &modifiers, true, true);
+ key = find_special_key(&arg, len + 1, &modifiers, true, true, false);
if (modifiers) { // can't handle modifiers here
key = 0;
}