aboutsummaryrefslogtreecommitdiff
path: root/runtime
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2017-07-02 04:54:24 +0200
committerJustin M. Keyes <justinkz@gmail.com>2017-07-08 16:34:33 +0200
commit78c5201234e478ff8f648adea95be18ca588a9cd (patch)
tree697e1f40d9244af8abcada1eb848b37c9a5b567f /runtime
parent6720fe253e92b21c7f989389a64e363b5933884f (diff)
downloadrneovim-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 'runtime')
-rw-r--r--runtime/doc/map.txt3
-rw-r--r--runtime/doc/options.txt9
-rw-r--r--runtime/doc/vim_diff.txt2
3 files changed, 2 insertions, 12 deletions
diff --git a/runtime/doc/map.txt b/runtime/doc/map.txt
index f5b0233e6c..48d05bce58 100644
--- a/runtime/doc/map.txt
+++ b/runtime/doc/map.txt
@@ -444,8 +444,7 @@ There are two ways to map a special key:
starts with <Esc>. To enter a mapping like this you type ":map " and then
you have to type CTRL-V before hitting the function key. Note that when
the key code for the key is in the |terminfo| entry, it will automatically
- be translated into the internal code and become the second way of mapping
- (unless the 'k' flag is included in 'cpoptions').
+ be translated into the internal code and become the second way of mapping.
2. The second method is to use the internal code for the function key. To
enter such a mapping type CTRL-K and then hit the function key, or use
the form "#1", "#2", .. "#9", "#0", "<Up>", "<S-Down>", "<S-F7>", etc.
diff --git a/runtime/doc/options.txt b/runtime/doc/options.txt
index ca126f5a79..307c14a0e5 100644
--- a/runtime/doc/options.txt
+++ b/runtime/doc/options.txt
@@ -1618,15 +1618,6 @@ A jump table for the options with a short description can be found at |Q_op|.
J A |sentence| has to be followed by two spaces after
the '.', '!' or '?'. A <Tab> is not recognized as
white space.
- *cpo-k*
- k Disable the recognition of raw key codes in
- mappings, abbreviations, and the "to" part of menu
- commands. For example, if <Key> sends ^[OA (where ^[
- is <Esc>), the command ":map X ^[OA" results in X
- being mapped to:
- 'k' included: "^[OA" (3 characters)
- 'k' excluded: "<Key>" (one key code)
- Also see the '<' flag below.
*cpo-K*
K Don't wait for a key code to complete when it is
halfway through a mapping. This breaks mapping
diff --git a/runtime/doc/vim_diff.txt b/runtime/doc/vim_diff.txt
index ca07e613ed..20d1e5dc4e 100644
--- a/runtime/doc/vim_diff.txt
+++ b/runtime/doc/vim_diff.txt
@@ -332,7 +332,7 @@ Test functions:
Other options:
'antialias'
- 'cpoptions' ("g", "w", "H", "*", "-", "j", and all POSIX flags were removed)
+ 'cpoptions' (g j k H w * - and all POSIX flags were removed)
'encoding' ("utf-8" is always used)
'esckeys'
'guioptions' "t" flag was removed