aboutsummaryrefslogtreecommitdiff
path: root/runtime/doc/insert.txt
diff options
context:
space:
mode:
authorShougo Matsushita <Shougo.Matsu@gmail.com>2019-03-30 21:06:23 +0900
committerShougo Matsushita <Shougo.Matsu@gmail.com>2019-03-30 22:24:35 +0900
commit2d63b6d2c17906fafcbbfe7111202cf4c5d392af (patch)
tree9458dcbcb3c216ded9822170eb13937b38490171 /runtime/doc/insert.txt
parentdfb7f6b3492edfd60583f76ee064ac76b1b913d8 (diff)
downloadrneovim-2d63b6d2c17906fafcbbfe7111202cf4c5d392af.tar.gz
rneovim-2d63b6d2c17906fafcbbfe7111202cf4c5d392af.tar.bz2
rneovim-2d63b6d2c17906fafcbbfe7111202cf4c5d392af.zip
vim-patch:8.1.1068: cannot get all the information about current completion
Problem: Cannot get all the information about current completion. Solution: Add complete_info(). (Shougo, Hirohito Higashi, closes vim/vim#4106) https://github.com/vim/vim/commit/fd133323d4e1cc9c0e61c0ce357df4d36ea148e3
Diffstat (limited to 'runtime/doc/insert.txt')
-rw-r--r--runtime/doc/insert.txt5
1 files changed, 3 insertions, 2 deletions
diff --git a/runtime/doc/insert.txt b/runtime/doc/insert.txt
index f22f90548b..173ad33090 100644
--- a/runtime/doc/insert.txt
+++ b/runtime/doc/insert.txt
@@ -359,8 +359,8 @@ CTRL-\ CTRL-O like CTRL-O but don't move the cursor *i_CTRL-\_CTRL-O*
CTRL-L when 'insertmode' is set: go to Normal mode *i_CTRL-L*
CTRL-G u break undo sequence, start new change *i_CTRL-G_u*
CTRL-G U don't break undo with next left/right cursor *i_CTRL-G_U*
- movement (but only if the cursor stays
- within same the line)
+ movement, if the cursor stays within
+ same the line
-----------------------------------------------------------------------
The CTRL-O command sometimes has a side effect: If the cursor was beyond the
@@ -617,6 +617,7 @@ and one of the CTRL-X commands. You exit CTRL-X mode by typing a key that is
not a valid CTRL-X mode command. Valid keys are the CTRL-X command itself,
CTRL-N (next), and CTRL-P (previous).
+To get the current completion information, |complete_info()| can be used.
Also see the 'infercase' option if you want to adjust the case of the match.
*complete_CTRL-E*