- Use full option name for 'clipboard' at :help :put.
- Minor rewordings, typo fixes, and formatting fixes.
related: #18453
closes: #18572
Signed-off-by: Doug Kearns <dougkearns@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
-*arabic.txt* For Vim version 9.1. Last change: 2021 Jun 22
+*arabic.txt* For Vim version 9.1. Last change: 2025 Oct 14
VIM REFERENCE MANUAL by Nadim Shaikli
To activate the Arabic keymap (i.e. to remap your English/Latin
keyboard to look-n-feel like a standard Arabic one), set the
- 'keymap' command to "arabic". This is done by entering
+ 'keymap' option to "arabic". This is done by entering
>
:set keymap=arabic
<
-*change.txt* For Vim version 9.1. Last change: 2025 Oct 12
+*change.txt* For Vim version 9.1. Last change: 2025 Oct 14
VIM REFERENCE MANUAL by Bram Moolenaar
current line). This always works |linewise|, thus
this command can be used to put a yanked block as new
lines.
- If no register is specified, it depends on the 'cb'
- option: If 'cb' contains "unnamedplus", paste from the
- + register |quoteplus|. Otherwise, if 'cb' contains
- "unnamed", paste from the * register |quotestar|.
- Otherwise, paste from the unnamed register
- |quote_quote|.
+ If no register is specified, it depends on the
+ 'clipboard' option: If 'clipboard' contains
+ "unnamedplus", paste from the + register |quoteplus|.
+ Otherwise, if 'clipboard' contains "unnamed", paste
+ from the * register |quotestar|. Otherwise, paste from
+ the unnamed register |quote_quote|.
The register can also be '=' followed by an optional
expression. The expression continues until the end of
the command. You need to escape the '|' and '"'
-*diff.txt* For Vim version 9.1. Last change: 2025 Oct 12
+*diff.txt* For Vim version 9.1. Last change: 2025 Oct 14
VIM REFERENCE MANUAL by Bram Moolenaar
buffers.
The `:diffoff` command resets the relevant options to the values they had when
-using `:diffsplit`, `:diffpatch`, `:diffthis`. or starting Vim in diff mode.
+using `:diffsplit`, `:diffpatch`, `:diffthis`, or starting Vim in diff mode.
When using `:diffoff` twice the last saved values are restored.
Otherwise they are set to their default value:
-*editing.txt* For Vim version 9.1. Last change: 2025 Oct 13
+*editing.txt* For Vim version 9.1. Last change: 2025 Oct 14
VIM REFERENCE MANUAL by Bram Moolenaar
strange to avoid accidentally overwriting existing files. If you prefer
".bak" change the 'backupext' option. Extra dots are replaced with '_' on
MS-Windows machines, when Vim has detected that an MS-DOS-like filesystem is
-being used (e.g., messydos or crossdos) or when the 'shortname' option is on.
+being used, or when the 'shortname' option is on.
The backup file can be placed in another directory by setting 'backupdir'.
*auto-shortname*
-*if_mzsch.txt* For Vim version 9.1. Last change: 2025 Oct 12
+*if_mzsch.txt* For Vim version 9.1. Last change: 2025 Oct 14
VIM REFERENCE MANUAL by Sergey Khorev
During compilation, the MzScheme interface will remember the current MzScheme
collection path. If you want to specify additional paths use the
-'current-library-collection-paths' parameter. E.g., to cons the user-local
+"current-library-collection-paths" parameter. E.g., to cons the user-local
MzScheme collection path: >
:mz << EOF
(current-library-collection-paths
-*if_perl.txt* For Vim version 9.1. Last change: 2025 Oct 12
+*if_perl.txt* For Vim version 9.1. Last change: 2025 Oct 14
VIM REFERENCE MANUAL by Sven Verdoolaege
Vim syntax highlighting supports Perl and POD files. Vim assumes a file is
Perl code if the filename has a .pl or .pm suffix. Vim also examines the
-first line of a file, regardless of the filename suffix, to check if a file is
-a Perl script (see scripts.vim in Vim's syntax directory). Vim assumes a file
-is POD text if the filename has a .POD suffix.
+shebang line of a file, if no filetype has been detected, to check if a file
+is a Perl script. Vim assumes a file is POD text if the filename has a .POD
+suffix.
To use tags with Perl, you need Universal/Exuberant Ctags. Look here:
Universal Ctags (preferred): https://ctags.io
-*indent.txt* For Vim version 9.1. Last change: 2025 Oct 12
+*indent.txt* For Vim version 9.1. Last change: 2025 Oct 14
VIM REFERENCE MANUAL by Bram Moolenaar
interface, associate, block, enum, critical, and change team constructs are
indented. The indenting of subroutines, functions, modules, and program
blocks is optional. Comments, labeled statements, and continuation lines are
-indented if the Fortran is in free source form, whereas they are not indented
-if the Fortran is in fixed source form because of the left margin
-requirements. Hence manual indent corrections will be necessary for labeled
-statements and continuation lines when fixed source form is being used. For
-further discussion of the method used for the detection of source format see
-|ft-fortran-syntax|.
+indented in free source form, whereas they are not indented in fixed source
+form because of the left margin requirements. Hence manual indent corrections
+will be necessary for labeled statements and continuation lines when fixed
+source form is being used. For further discussion of the method used for the
+detection of source format see |ft-fortran-syntax|.
Do loops ~
All do loops are left unindented by default. Do loops can be unstructured in
-*syntax.txt* For Vim version 9.1. Last change: 2025 Oct 13
+*syntax.txt* For Vim version 9.1. Last change: 2025 Oct 14
VIM REFERENCE MANUAL by Bram Moolenaar
If you want to develop a color list that can be relied on by others,
it is best to prefix your color names. By convention these color
lists are placed in the colors/lists directory. You can see an
- example in '$VIMRUNTIME/colors/lists/csscolors.vim'. This list would
+ example in "$VIMRUNTIME/colors/lists/csscolors.vim". This list would
be sourced by a color scheme using: >
:runtime colors/lists/csscolors.vim
-*terminal.txt* For Vim version 9.1. Last change: 2025 Oct 12
+*terminal.txt* For Vim version 9.1. Last change: 2025 Oct 14
VIM REFERENCE MANUAL by Bram Moolenaar
*termdebug_signs*
Termdebug uses the hex number of the breakpoint ID in the signcolumn to
represent breakpoints. If it is greater than "0xFF", then it will be
-displayed as "F+", due to we really only have two screen cells for the sign.
-You may also use decimal breakpoint signs instead, in which case IDs greater
-than 99 will be displayed as "9+".
+displayed as "F+", because there are only two screen cells available for the
+sign. You may also use decimal breakpoint signs instead, in which case IDs
+greater than 99 will be displayed as "9+".
If you want to customize the breakpoint signs to show `>>` in the signcolumn: >
let g:termdebug_config['sign'] = '>>'
-*windows.txt* For Vim version 9.1. Last change: 2025 Oct 12
+*windows.txt* For Vim version 9.1. Last change: 2025 Oct 14
VIM REFERENCE MANUAL by Bram Moolenaar
status line in each window.
Normally, inversion is used to display the status line. This can be changed
-with the 's' character in the 'highlight' option. For example, "sb" sets it to
-bold characters. If no highlighting is used for the status line ("sn"), the
-'^' character is used for the current window, and '=' for other windows. If
-the mouse is supported and enabled with the 'mouse' option, a status line can
-be dragged to resize windows.
+with the 's' character in the 'highlight' option. For example, "sb" sets it
+to bold characters. If no highlighting is used for the status line ("sn"),
+the '^' character is used for the current window, and '=' for other windows.
+If the mouse is supported and enabled with the 'mouse' option, a status line
+can be dragged to resize windows.
Note: If you expect your status line to be in reverse video and it isn't,
check if the 'highlight' option contains "si". In version 3.0, this meant to
*filler-lines*
The lines after the last buffer line in a window are called filler lines. By
-default, these lines start with a tilde (~) character. The 'eob' item in the
+default, these lines start with a tilde (~) character. The "eob" item in the
'fillchars' option can be used to change this character. By default, these
characters are highlighted as NonText (|hl-NonText|). The EndOfBuffer
highlight group (|hl-EndOfBuffer|) can be used to change the highlighting of