diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2017-07-02 13:21:38 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2017-07-08 16:34:35 +0200 |
commit | 0ea7e45bc1d1881f505da2b77e0b3e4eb56f12fe (patch) | |
tree | 4248c49bec3924a7faa974535aa7de2df0d7d88b /src/nvim/option.c | |
parent | 78c5201234e478ff8f648adea95be18ca588a9cd (diff) | |
download | rneovim-0ea7e45bc1d1881f505da2b77e0b3e4eb56f12fe.tar.gz rneovim-0ea7e45bc1d1881f505da2b77e0b3e4eb56f12fe.tar.bz2 rneovim-0ea7e45bc1d1881f505da2b77e0b3e4eb56f12fe.zip |
'cpoptions': remove "<" flag; ignore <special>
Closes #6937 "nvim_get_keymap output is unreliable"
Diffstat (limited to 'src/nvim/option.c')
-rw-r--r-- | src/nvim/option.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/option.c b/src/nvim/option.c index ed058c420d..37b37e2859 100644 --- a/src/nvim/option.c +++ b/src/nvim/option.c @@ -3034,7 +3034,7 @@ did_set_string_option ( /* 'pastetoggle': translate key codes like in a mapping */ else if (varp == &p_pt) { if (*p_pt) { - (void)replace_termcodes(p_pt, STRLEN(p_pt), &p, true, true, false, + (void)replace_termcodes(p_pt, STRLEN(p_pt), &p, true, true, true, CPO_TO_CPO_FLAGS); if (p != NULL) { if (new_value_alloced) |