Skip to content

Commit 185cec2

Browse files
dkearnschrisbra
authored andcommitted
runtime(doc): Rewrite some overlength lines
closes: #18695 Signed-off-by: Doug Kearns <dougkearns@gmail.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
1 parent a3063f2 commit 185cec2

3 files changed

Lines changed: 10 additions & 10 deletions

File tree

runtime/doc/index.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*index.txt* For Vim version 9.1. Last change: 2025 Oct 31
1+
*index.txt* For Vim version 9.1. Last change: 2025 Nov 07
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -169,7 +169,7 @@ commands in CTRL-X submode *i_CTRL-X_index*
169169
|i_CTRL-X_CTRL-Y| CTRL-X CTRL-Y scroll down
170170
|i_CTRL-X_CTRL-U| CTRL-X CTRL-U complete with 'completefunc'
171171
|i_CTRL-X_CTRL-V| CTRL-X CTRL-V complete like in : command line
172-
|i_CTRL-X_CTRL-Z| CTRL-X CTRL-Z stop completion, keeping the text as-is
172+
|i_CTRL-X_CTRL-Z| CTRL-X CTRL-Z stop completion, text is unchanged
173173
|i_CTRL-X_CTRL-]| CTRL-X CTRL-] complete tags
174174
|i_CTRL-X_s| CTRL-X s spelling suggestions
175175

runtime/doc/map.txt

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*map.txt* For Vim version 9.1. Last change: 2025 Oct 12
1+
*map.txt* For Vim version 9.1. Last change: 2025 Nov 07
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -1753,16 +1753,15 @@ by default correspond to the current line, last line and the whole buffer,
17531753
relate to arguments, (loaded) buffers, windows or tab pages.
17541754

17551755
Possible values are (second column is the short name used in listing):
1756-
-addr=lines Range of lines (this is the default for -range)
1756+
-addr=lines Range of lines (the default for -range)
17571757
-addr=arguments arg Range for arguments
17581758
-addr=buffers buf Range for buffers (also not loaded buffers)
17591759
-addr=loaded_buffers load Range for loaded buffers
17601760
-addr=windows win Range for windows
17611761
-addr=tabs tab Range for tab pages
17621762
-addr=quickfix qf Range for quickfix entries
17631763
-addr=other ? Other kind of range; can use ".", "$" and "%"
1764-
as with "lines" (this is the default for
1765-
-count)
1764+
as with "lines" (the default for -count)
17661765

17671766

17681767
Special cases ~

runtime/doc/usr_05.txt

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*usr_05.txt* For Vim version 9.1. Last change: 2025 Oct 26
1+
*usr_05.txt* For Vim version 9.1. Last change: 2025 Nov 07
22

33

44
VIM USER MANUAL by Bram Moolenaar
@@ -338,8 +338,8 @@ This only works in a Vim script file, not when typing commands at the
338338
command line.
339339

340340
>
341-
command DiffOrig vert new | set bt=nofile | r ++edit # | 0d_ | diffthis
342-
\ | wincmd p | diffthis
341+
command DiffOrig vert new | set bt=nofile | r ++edit # | 0d_
342+
\ | diffthis | wincmd p | diffthis
343343
344344
This adds the ":DiffOrig" command. Use this in a modified buffer to see the
345345
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:
539539
GETTING A GLOBAL PLUGIN
540540

541541
Where can you find plugins?
542-
- Some are always loaded, you can see them in the directory $VIMRUNTIME/plugin.
542+
- Some are always loaded, you can see them in the directory
543+
$VIMRUNTIME/plugin.
543544
- Some come with Vim. You can find them in the directory $VIMRUNTIME/macros
544545
and its sub-directories and under $VIM/vimfiles/pack/dist/opt/.
545546
- Download from the net. There is a large collection on http://www.vim.org.

0 commit comments

Comments
 (0)