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 /runtime/doc/tips.txt | |
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 'runtime/doc/tips.txt')
-rw-r--r-- | runtime/doc/tips.txt | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/runtime/doc/tips.txt b/runtime/doc/tips.txt index 9b34cd7599..8bb49c2322 100644 --- a/runtime/doc/tips.txt +++ b/runtime/doc/tips.txt @@ -282,9 +282,7 @@ For Emacs-style editing on the command-line: > :cnoremap <Esc><C-B> <S-Left> " forward one word :cnoremap <Esc><C-F> <S-Right> - -NOTE: This requires that the '<' flag is excluded from 'cpoptions'. |<>| - +< *format-bullet-list* This mapping will format any bullet list. It requires that there is an empty line above and below each list entry. The expression commands are used to @@ -300,8 +298,7 @@ be able to give comments to the parts of the mapping. > :execute m |" define the mapping (<> notation |<>|. Note that this is all typed literally. ^W is "^" "W", not -CTRL-W. You can copy/paste this into Vim if '<' is not included in -'cpoptions'.) +CTRL-W.) Note that the last comment starts with |", because the ":execute" command doesn't accept a comment directly. |