mirror of
https://github.com/vim/vim.git
synced 2025-11-13 22:54:27 -05:00
runtime(doc): Rewrite some overlength lines
closes: #18695 Signed-off-by: Doug Kearns <dougkearns@gmail.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
This commit is contained in:
committed by
Christian Brabandt
parent
a3063f2f90
commit
185cec2b09
@@ -1,4 +1,4 @@
|
|||||||
*index.txt* For Vim version 9.1. Last change: 2025 Oct 31
|
*index.txt* For Vim version 9.1. Last change: 2025 Nov 07
|
||||||
|
|
||||||
|
|
||||||
VIM REFERENCE MANUAL by Bram Moolenaar
|
VIM REFERENCE MANUAL by Bram Moolenaar
|
||||||
@@ -169,7 +169,7 @@ commands in CTRL-X submode *i_CTRL-X_index*
|
|||||||
|i_CTRL-X_CTRL-Y| CTRL-X CTRL-Y scroll down
|
|i_CTRL-X_CTRL-Y| CTRL-X CTRL-Y scroll down
|
||||||
|i_CTRL-X_CTRL-U| CTRL-X CTRL-U complete with 'completefunc'
|
|i_CTRL-X_CTRL-U| CTRL-X CTRL-U complete with 'completefunc'
|
||||||
|i_CTRL-X_CTRL-V| CTRL-X CTRL-V complete like in : command line
|
|i_CTRL-X_CTRL-V| CTRL-X CTRL-V complete like in : command line
|
||||||
|i_CTRL-X_CTRL-Z| CTRL-X CTRL-Z stop completion, keeping the text as-is
|
|i_CTRL-X_CTRL-Z| CTRL-X CTRL-Z stop completion, text is unchanged
|
||||||
|i_CTRL-X_CTRL-]| CTRL-X CTRL-] complete tags
|
|i_CTRL-X_CTRL-]| CTRL-X CTRL-] complete tags
|
||||||
|i_CTRL-X_s| CTRL-X s spelling suggestions
|
|i_CTRL-X_s| CTRL-X s spelling suggestions
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
*map.txt* For Vim version 9.1. Last change: 2025 Oct 12
|
*map.txt* For Vim version 9.1. Last change: 2025 Nov 07
|
||||||
|
|
||||||
|
|
||||||
VIM REFERENCE MANUAL by Bram Moolenaar
|
VIM REFERENCE MANUAL by Bram Moolenaar
|
||||||
@@ -1753,7 +1753,7 @@ by default correspond to the current line, last line and the whole buffer,
|
|||||||
relate to arguments, (loaded) buffers, windows or tab pages.
|
relate to arguments, (loaded) buffers, windows or tab pages.
|
||||||
|
|
||||||
Possible values are (second column is the short name used in listing):
|
Possible values are (second column is the short name used in listing):
|
||||||
-addr=lines Range of lines (this is the default for -range)
|
-addr=lines Range of lines (the default for -range)
|
||||||
-addr=arguments arg Range for arguments
|
-addr=arguments arg Range for arguments
|
||||||
-addr=buffers buf Range for buffers (also not loaded buffers)
|
-addr=buffers buf Range for buffers (also not loaded buffers)
|
||||||
-addr=loaded_buffers load Range for loaded buffers
|
-addr=loaded_buffers load Range for loaded buffers
|
||||||
@@ -1761,8 +1761,7 @@ Possible values are (second column is the short name used in listing):
|
|||||||
-addr=tabs tab Range for tab pages
|
-addr=tabs tab Range for tab pages
|
||||||
-addr=quickfix qf Range for quickfix entries
|
-addr=quickfix qf Range for quickfix entries
|
||||||
-addr=other ? Other kind of range; can use ".", "$" and "%"
|
-addr=other ? Other kind of range; can use ".", "$" and "%"
|
||||||
as with "lines" (this is the default for
|
as with "lines" (the default for -count)
|
||||||
-count)
|
|
||||||
|
|
||||||
|
|
||||||
Special cases ~
|
Special cases ~
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
*usr_05.txt* For Vim version 9.1. Last change: 2025 Oct 26
|
*usr_05.txt* For Vim version 9.1. Last change: 2025 Nov 07
|
||||||
|
|
||||||
|
|
||||||
VIM USER MANUAL by Bram Moolenaar
|
VIM USER MANUAL by Bram Moolenaar
|
||||||
@@ -338,8 +338,8 @@ This only works in a Vim script file, not when typing commands at the
|
|||||||
command line.
|
command line.
|
||||||
|
|
||||||
>
|
>
|
||||||
command DiffOrig vert new | set bt=nofile | r ++edit # | 0d_ | diffthis
|
command DiffOrig vert new | set bt=nofile | r ++edit # | 0d_
|
||||||
\ | wincmd p | diffthis
|
\ | diffthis | wincmd p | diffthis
|
||||||
|
|
||||||
This adds the ":DiffOrig" command. Use this in a modified buffer to see the
|
This adds the ":DiffOrig" command. Use this in a modified buffer to see the
|
||||||
differences with the file it was loaded from. See |diff| and |:DiffOrig|.
|
differences with the file it was loaded from. See |diff| and |:DiffOrig|.
|
||||||
@@ -539,7 +539,8 @@ when you use Vim. There are only two steps for adding a global plugin:
|
|||||||
GETTING A GLOBAL PLUGIN
|
GETTING A GLOBAL PLUGIN
|
||||||
|
|
||||||
Where can you find plugins?
|
Where can you find plugins?
|
||||||
- Some are always loaded, you can see them in the directory $VIMRUNTIME/plugin.
|
- Some are always loaded, you can see them in the directory
|
||||||
|
$VIMRUNTIME/plugin.
|
||||||
- Some come with Vim. You can find them in the directory $VIMRUNTIME/macros
|
- Some come with Vim. You can find them in the directory $VIMRUNTIME/macros
|
||||||
and its sub-directories and under $VIM/vimfiles/pack/dist/opt/.
|
and its sub-directories and under $VIM/vimfiles/pack/dist/opt/.
|
||||||
- Download from the net. There is a large collection on http://www.vim.org.
|
- Download from the net. There is a large collection on http://www.vim.org.
|
||||||
|
|||||||
Reference in New Issue
Block a user