aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2022-10-15 17:28:23 +0800
committerzeertzjq <zeertzjq@outlook.com>2022-10-15 17:44:56 +0800
commit09b0f7cd08634a45fc277017324d4b18d10bef06 (patch)
treea46102055be7f5250f63daab7c81b03be7a6d15a
parent6f5426edf690db2c31823ff7435116dbc837656b (diff)
downloadrneovim-09b0f7cd08634a45fc277017324d4b18d10bef06.tar.gz
rneovim-09b0f7cd08634a45fc277017324d4b18d10bef06.tar.bz2
rneovim-09b0f7cd08634a45fc277017324d4b18d10bef06.zip
vim-patch:partial:9.0.0753: some Ex commands are not in the help index
Problem: Some Ex commands are not in the help index. Solution: Add the missing commands. Add a script to check all Ex commands are in the help index. (Yee Cheng Chin, closes vim/vim#11371) https://github.com/vim/vim/commit/b77bdce120d7e140d0d0bd535ec9febdef78993d Only port index.txt docs for :star and :horizontal.
-rw-r--r--runtime/doc/index.txt3
1 files changed, 2 insertions, 1 deletions
diff --git a/runtime/doc/index.txt b/runtime/doc/index.txt
index c96f50e6dd..df1695b43b 100644
--- a/runtime/doc/index.txt
+++ b/runtime/doc/index.txt
@@ -1135,7 +1135,7 @@ tag command action ~
|:!!| :!! repeat last ":!" command
|:#| :# same as ":number"
|:&| :& repeat last ":substitute"
-|:star| :* execute contents of a register
+|:star| :* use the last Visual area, like :'<,'>
|:<| :< shift lines one 'shiftwidth' left
|:=| := print the last line number
|:>| :> shift lines one 'shiftwidth' right
@@ -1329,6 +1329,7 @@ tag command action ~
|:highlight| :hi[ghlight] specify highlighting methods
|:hide| :hid[e] hide current buffer for a command
|:history| :his[tory] print a history list
+|:horizontal| :hor[izontal] following window command work horizontally
|:insert| :i[nsert] insert text
|:iabbrev| :ia[bbrev] like ":abbrev" but for Insert mode
|:iabclear| :iabc[lear] like ":abclear" but for Insert mode