diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2017-07-02 04:54:24 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2017-07-08 16:34:33 +0200 |
commit | 78c5201234e478ff8f648adea95be18ca588a9cd (patch) | |
tree | 697e1f40d9244af8abcada1eb848b37c9a5b567f /src/nvim/api/vim.c | |
parent | 6720fe253e92b21c7f989389a64e363b5933884f (diff) | |
download | rneovim-78c5201234e478ff8f648adea95be18ca588a9cd.tar.gz rneovim-78c5201234e478ff8f648adea95be18ca588a9cd.tar.bz2 rneovim-78c5201234e478ff8f648adea95be18ca588a9cd.zip |
'cpoptions': remove "k" flag
This was already removed in 3baba1e7bc66, except the documentation and
CPO_VI entry. find_term_bykeys() is irrelevant to Nvim.
Diffstat (limited to 'src/nvim/api/vim.c')
-rw-r--r-- | src/nvim/api/vim.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/nvim/api/vim.c b/src/nvim/api/vim.c index 80efe86ea3..ac7c9cbce6 100644 --- a/src/nvim/api/vim.c +++ b/src/nvim/api/vim.c @@ -153,7 +153,6 @@ String nvim_replace_termcodes(String str, Boolean from_part, Boolean do_lt, char *ptr = NULL; // Set 'cpoptions' the way we want it. // FLAG_CPO_BSLASH set - backslashes are *not* treated specially - // FLAG_CPO_KEYCODE set - keycodes are *not* reverse-engineered // FLAG_CPO_SPECI unset - <Key> sequences *are* interpreted // The third from end parameter of replace_termcodes() is true so that the // <lt> sequence is recognised - needed for a real backslash. |