]> git.ipfire.org Git - thirdparty/vim.git/commitdiff
runtime(doc): Fix some overlength lines
authorDoug Kearns <dougkearns@gmail.com>
Sat, 31 Jan 2026 16:13:39 +0000 (16:13 +0000)
committerChristian Brabandt <cb@256bit.org>
Sat, 31 Jan 2026 16:13:39 +0000 (16:13 +0000)
closes: #19286

Signed-off-by: Doug Kearns <dougkearns@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
18 files changed:
runtime/doc/autocmd.txt
runtime/doc/builtin.txt
runtime/doc/channel.txt
runtime/doc/develop.txt
runtime/doc/eval.txt
runtime/doc/gui_w32.txt
runtime/doc/mbyte.txt
runtime/doc/netbeans.txt
runtime/doc/options.txt
runtime/doc/pi_getscript.txt
runtime/doc/pi_vimball.txt
runtime/doc/quickfix.txt
runtime/doc/repeat.txt
runtime/doc/starting.txt
runtime/doc/syntax.txt
runtime/doc/tagsrch.txt
runtime/doc/term.txt
runtime/doc/vi_diff.txt

index 2d743ef7c3394a667b48be561872ff658b9fd460..5bc72b8fc3c017f4bf2b7bb1a0119824fa371679 100644 (file)
@@ -1,4 +1,4 @@
-*autocmd.txt*  For Vim version 9.1.  Last change: 2025 Nov 09
+*autocmd.txt*  For Vim version 9.1.  Last change: 2026 Jan 30
 
 
                  VIM REFERENCE MANUAL    by Bram Moolenaar
@@ -874,7 +874,8 @@ FileChangedShell            When Vim notices that the modification time of
                                to tell Vim what to do next.
                                NOTE: When this autocommand is executed, the
                                current buffer "%" may be different from the
-                               buffer that was changed, which is in "<afile>".
+                               buffer that was changed, which is in
+                               "<afile>".
                                NOTE: The commands must not change the current
                                buffer, jump to another buffer or delete a
                                buffer.  *E246* *E811*
@@ -1324,9 +1325,9 @@ TermResponseAll                   After the response to |t_RV|, |t_RC|, |t_RS|,
                                    "osc",
                                    "version" (|t_RV|)
                                Note that this event may be triggered halfway
-                               executing another event, especially if file I/O,
-                               a shell command or anything else that takes time
-                               is involved.
+                               executing another event, especially if file
+                               I/O, a shell command or anything else that
+                               takes time is involved.
                                                        *TextChanged*
 TextChanged                    After a change was made to the text in the
                                current buffer in Normal mode.  That is after
@@ -1455,8 +1456,9 @@ VimResume                 When the Vim instance is resumed after being
        :autocmd VimResume * checktime
 <                                                      *VimSuspend*
 VimSuspend                     When the Vim instance is suspended.  Only when
-                               CTRL-Z was typed inside Vim, or when the SIGTSTP
-                               signal was sent to Vim, but not for SIGSTOP.
+                               CTRL-Z was typed inside Vim, or when the
+                               SIGTSTP signal was sent to Vim, but not for
+                               SIGSTOP.
                                                        *WinClosed*
 WinClosed                      When closing a window, just before it is
                                removed from the window layout.  The pattern
index 18712b40373549774843449e41e8e911a8bea9bf..57f46c3d7631cfb12dd8d3b33d338edbabfb0039 100644 (file)
@@ -7982,8 +7982,8 @@ nr2char({expr} [, {utf8}])                                *nr2char()*
                value {expr}.  Examples: >
                        nr2char(64)             returns "@"
                        nr2char(32)             returns " "
-<              When {utf8} is omitted or zero, the current 'encoding' is used.
-               Example for "utf-8": >
+<              When {utf8} is omitted or zero, the current 'encoding' is
+               used.  Example for "utf-8": >
                        nr2char(300)            returns I with bow character
 <              When {utf8} is TRUE, always return UTF-8 characters.
                Note that a NUL character in the file is specified with
@@ -8866,7 +8866,7 @@ redraw_listener_add({opts})                               *redraw_listener_add()*
                Return type: |Number|
 
 
-redraw_listener_remove({id})                           *redraw_listener_remove()*
+redraw_listener_remove({id})                   *redraw_listener_remove()*
                Remove a redraw listener previously added with
                |redraw_listener_add()|.  Returns FALSE when {id} could not be
                found, TRUE when {id} was removed.
@@ -12659,7 +12659,8 @@ win_gettype([{nr}])                                     *win_gettype()*
 win_gotoid({expr})                                     *win_gotoid()*
                Go to window with ID {expr}.  This may also change the current
                tabpage.
-               Return TRUE if successful, FALSE if the window cannot be found.
+               Return TRUE if successful, FALSE if the window cannot be
+               found.
 
                Can also be used as a |method|: >
                        GetWinid()->win_gotoid()
index 1750d1cb281b3caff78a37160a4b1d4c5205e610..2f76983d76ffeb045cee5fe8762e333b80681920 100644 (file)
@@ -1,4 +1,4 @@
-*channel.txt*  For Vim version 9.1.  Last change: 2025 Nov 09
+*channel.txt*  For Vim version 9.1.  Last change: 2026 Jan 30
 
 
                  VIM REFERENCE MANUAL    by Bram Moolenaar
@@ -1583,8 +1583,8 @@ A LSP request message has the following format (expressed as a Vim Dict).  The
        "params": <list|dict>
     }
 
-A LSP response message has the following format (expressed as a Vim Dict).  The
-"result" and "error" fields are optional: >
+A LSP response message has the following format (expressed as a Vim Dict).
+The "result" and "error" fields are optional: >
 
     {
        "jsonrpc": "2.0",
index 8526926d58414b9e286ccac0245cf13d412e3b11..a678ce2209201bc5c19a8075a136d2f06bd407d9 100644 (file)
@@ -1,4 +1,4 @@
-*develop.txt*  For Vim version 9.1.  Last change: 2025 Dec 13
+*develop.txt*  For Vim version 9.1.  Last change: 2026 Jan 30
 
 
                  VIM REFERENCE MANUAL    by Bram Moolenaar
@@ -411,12 +411,12 @@ For any non-trivial change, please always create a pull request on github,
 since this triggers the test suite.
 
 A PR should ideally contain a single commit for a single logical change.
-However, you can include several commits if you want to group multiple logical,
-atomic changes in one PR.  This can also make longer PRs easier to review.  Be
-sure to describe the reasoning for your changes in each commit message, as
-this greatly helps with the review process.  In cases where each commit
-handles different logical changes, they will also be applied as separate
-patches in Vim's repository.
+However, you can include several commits if you want to group multiple
+logical, atomic changes in one PR.  This can also make longer PRs easier to
+review.  Be sure to describe the reasoning for your changes in each commit
+message, as this greatly helps with the review process.  In cases where each
+commit handles different logical changes, they will also be applied as
+separate patches in Vim's repository.
 
                                                        *style-clang-format*
 sound.c and sign.c can be (semi-) automatically formatted using the
index de3b8d0cbb149ade189671f13811c2136a813cfb..eaece1a86ab75269390047f327b34fbe64952789 100644 (file)
@@ -1,4 +1,4 @@
-*eval.txt*     For Vim version 9.1.  Last change: 2026 Jan 10
+*eval.txt*     For Vim version 9.1.  Last change: 2026 Jan 30
 
 
                  VIM REFERENCE MANUAL    by Bram Moolenaar
@@ -2807,9 +2807,9 @@ v:sizeoflong      Number of bytes in a long.  Depends on how Vim was compiled.
                expected result.
 
                                *v:sizeofpointer* *sizeofpointer-variable*
-v:sizeofpointer        Number of bytes in a pointer.  Depends on how Vim was compiled.
-               This is only useful for deciding whether a test will give the
-               expected result.
+v:sizeofpointer        Number of bytes in a pointer.  Depends on how Vim was
+               compiled.  This is only useful for deciding whether a test
+               will give the expected result.
 
                                        *v:stacktrace* *stacktrace-variable*
 v:stacktrace   The stack trace of the exception most recently caught and
index e0e3eccf8f62132308529a778c37957fe60f47ff..5886e80de4d2ced7622007475b3dd5cf4c431ac2 100644 (file)
@@ -425,8 +425,8 @@ simulating the keystrokes Alt, F. >
 This maps Alt-Space to pop down the system menu for the Vim window.  Note that
 ~ is used by simalt to represent the <Space> character. >
        :map <C-n> :simalt ~n<CR>
-Maps Control-N to produce the keys Alt-Space followed by N.  This minimizes the
-Vim window via the system menu.
+Maps Control-N to produce the keys Alt-Space followed by N.  This minimizes
+the Vim window via the system menu.
 
 Note that the key changes depending on the language you are using.
 
@@ -510,7 +510,8 @@ Full Screen                                         *gui-w32-fullscreen*
 To enable fullscreen mode in the Windows GUI version of Vim, add the 's' flag
 to the 'guioptions' setting.
 
-For convenience, you can define a command or mapping to toggle fullscreen mode:
+For convenience, you can define a command or mapping to toggle fullscreen
+mode:
 >
        command ToggleFullscreen {
          if &guioptions =~# 's'
index 9c99f22c4eafc466024d4fe7040dd45caf05a47e..a291785f1da9e36dc03d8f50170875a5719d5d08 100644 (file)
@@ -1,4 +1,4 @@
-*mbyte.txt*    For Vim version 9.1.  Last change: 2025 Dec 17
+*mbyte.txt*    For Vim version 9.1.  Last change: 2026 Jan 30
 
 
                  VIM REFERENCE MANUAL    by Bram Moolenaar et al.
@@ -455,8 +455,8 @@ Useful utilities for converting the charset:
        ftp://ftp.cuhk.hk/pub/chinese/ifcss/software/unix/convert/hc-30.tar.gz
 
     Korean:        hmconv
-       Hmconv is Korean code conversion utility especially for E-mail.  It can
-       convert between EUC-KR and ISO-2022-KR.  Hmconv can be found at:
+       Hmconv is Korean code conversion utility especially for E-mail.  It
+       can convert between EUC-KR and ISO-2022-KR.  Hmconv can be found at:
        https://www.freshports.org/korean/hmconv/
 
     Multilingual:   lv
@@ -761,9 +761,9 @@ Then add a command to your |gvimrc| file to set 'guifont': >
 
 X INPUT METHOD (XIM) BACKGROUND                        *XIM* *xim* *x-input-method*
 
-XIM is an international input module for X.  There are two kinds of structures,
-Xlib unit type and |IM-server| (Input-Method server) type.  |IM-server| type
-is suitable for complex input, such as CJK.
+XIM is an international input module for X.  There are two kinds of
+structures, Xlib unit type and |IM-server| (Input-Method server) type.
+|IM-server| type is suitable for complex input, such as CJK.
 
 - IM-server
                                                        *IM-server*
index 53448f25a13751dfd1cb08533ee9a21e0080408c..c38beca145ea921dbb26835ede11208ce6aca5a8 100644 (file)
@@ -1,4 +1,4 @@
-*netbeans.txt* For Vim version 9.1.  Last change: 2026 Jan 25
+*netbeans.txt* For Vim version 9.1.  Last change: 2026 Jan 30
 
 
                  VIM REFERENCE MANUAL    by Gordon Prieur et al.
@@ -390,7 +390,8 @@ addAnno serNum typeNum off len
                   typeNum      number  sequence number of the annotation
                                        defined with defineAnnoType for this
                                        buffer
-                  off          number  offset where annotation is to be placed
+                  off          number  offset where annotation is to be
+                                       placed
                   len          number  not used
                In version 2.1 "lnum/col" can be used instead of "off".
 
@@ -645,7 +646,8 @@ getMark             Not implemented.
 getAnno serNum
                Return the line number of the annotation in the buffer.
                Argument:
-                       serNum          serial number of this placed annotation
+                       serNum          serial number of this placed
+                                       annotation
                The reply is:
                        123 lnum        line number of the annotation
                        123 0           invalid annotation serial number
index cdb75dae2a4e4de643394241ff1ffabd372a89d1..e629a7a78c0051c2f278bfac9dcfe65b865814d3 100644 (file)
@@ -1,4 +1,4 @@
-*options.txt*  For Vim version 9.1.  Last change: 2026 Jan 29
+*options.txt*  For Vim version 9.1.  Last change: 2026 Jan 30
 
 
                  VIM REFERENCE MANUAL    by Bram Moolenaar
@@ -1025,8 +1025,9 @@ A jump table for the options with a short description can be found at |Q_op|.
                         *'autowriteall'* *'awa'* *'noautowriteall'* *'noawa'*
 'autowriteall' 'awa'   boolean (default off)
                        global
-       Like 'autowrite', but also used for commands ":edit", ":enew", ":quit",
-       ":qall", ":exit", ":xit", ":recover" and closing the Vim window.
+       Like 'autowrite', but also used for commands ":edit", ":enew",
+       ":quit", ":qall", ":exit", ":xit", ":recover" and closing the Vim
+       window.
        Setting this option also implies that Vim behaves like 'autowrite' has
        been set.
 
@@ -2571,8 +2572,9 @@ A jump table for the options with a short description can be found at |Q_op|.
                        This makes "y0" fail in the first column.
                                                                *cpo-f*
                f       When included, a ":read" command with a file name
-                       argument will set the file name for the current buffer,
-                       if the current buffer doesn't have a file name yet.
+                       argument will set the file name for the current
+                       buffer, if the current buffer doesn't have a file name
+                       yet.
                                                                *cpo-F*
                F       When included, a ":write" command with a file name
                        argument will set the file name for the current
@@ -3173,8 +3175,8 @@ A jump table for the options with a short description can be found at |Q_op|.
                hiddenoff       Do not use diff mode for a buffer when it
                                becomes hidden.
 
-               iblank          Ignore changes where lines are all blank.  Adds
-                               the "-B" flag to the "diff" command if
+               iblank          Ignore changes where lines are all blank.
+                               Adds the "-B" flag to the "diff" command if
                                'diffexpr' is empty.  Check the documentation
                                of the "diff" command for what this does
                                exactly.
@@ -3804,9 +3806,9 @@ A jump table for the options with a short description can be found at |Q_op|.
          edit a file, a check is done for the <EOL>:
          1. If all lines end in <CR><NL>, and 'fileformats' includes "dos",
             'fileformat' is set to "dos".
-         2. If a <NL> is found and 'fileformats' includes "unix", 'fileformat'
-            is set to "unix".  Note that when a <NL> is found without a
-            preceding <CR>, "unix" is preferred over "dos".
+         2. If a <NL> is found and 'fileformats' includes "unix",
+            'fileformat' is set to "unix".  Note that when a <NL> is found
+            without a preceding <CR>, "unix" is preferred over "dos".
          3. If 'fileformat' has not yet been set, and if a <CR> is found, and
             if 'fileformats' includes "mac", 'fileformat' is set to "mac".
             This means that "mac" is only chosen when:
@@ -4543,8 +4545,8 @@ A jump table for the options with a short description can be found at |Q_op|.
          'e'   Add tab pages when indicated with 'showtabline'.
                'guitablabel' can be used to change the text in the labels.
                When 'e' is missing a non-GUI tab pages line may be used.
-               The GUI tabs are only supported on some systems, currently GTK,
-               Motif, Mac OS/X, Haiku, and MS-Windows.
+               The GUI tabs are only supported on some systems, currently
+               GTK, Motif, Mac OS/X, Haiku, and MS-Windows.
                                                                *'go-f'*
          'f'   Foreground: Don't use fork() to detach the GUI from the shell
                where it was started.  Use this for programs that wait for the
@@ -5896,8 +5898,8 @@ A jump table for the options with a short description can be found at |Q_op|.
                                        *'makeencoding'* *'menc'*
 'makeencoding' 'menc'  string  (default "")
                        global or local to buffer |global-local|
-       Encoding used for reading the output of external commands.  When empty,
-       encoding is not converted.
+       Encoding used for reading the output of external commands.  When
+       empty, encoding is not converted.
        This is used for `:make`, `:lmake`, `:grep`, `:lgrep`, `:grepadd`,
        `:lgrepadd`, `:cfile`, `:cgetfile`, `:caddfile`, `:lfile`, `:lgetfile`,
        and `:laddfile`.
@@ -6205,8 +6207,8 @@ A jump table for the options with a short description can be found at |Q_op|.
 <      If your terminal can't overrule the mouse events going to the
        application, use: >
                :set mouse=nvi
-<      Then you can press ":", select text for the system, and press Esc to go
-       back to Vim using the mouse events.
+<      Then you can press ":", select text for the system, and press Esc to
+       go back to Vim using the mouse events.
        In |defaults.vim| "nvi" is used if the 'term' option is not matching
        "xterm".
 
@@ -8501,9 +8503,10 @@ A jump table for the options with a short description can be found at |Q_op|.
              highlighting is used, also for the statusline of non-current
              windows.
        * -   Set highlight group to User{N}, where {N} is taken from the
-             minwid field, e.g. %1*.  Restore normal highlight with %* or %0*.
-             The difference between User{N} and StatusLine will be applied to
-             StatusLineNC for the statusline of non-current windows.
+             minwid field, e.g. %1*.  Restore normal highlight with %* or
+             %0*.  The difference between User{N} and StatusLine will be
+             applied to StatusLineNC for the statusline of non-current
+             windows.
              The number N must be between 1 and 9.  See |hl-User1..9|
 
        When displaying a flag, Vim removes the leading comma, if any, when
@@ -9537,9 +9540,9 @@ A jump table for the options with a short description can be found at |Q_op|.
                        global or local to buffer |global-local|
        Maximum number of changes that can be undone.  Since undo information
        is kept in memory, higher numbers will cause more memory to be used.
-       Nevertheless, a single change can already use a large amount of memory.
-       Set to 0 for Vi compatibility: One level of undo and "u" undoes
-       itself: >
+       Nevertheless, a single change can already use a large amount of
+       memory.  Set to 0 for Vi compatibility: One level of undo and "u"
+       undoes itself: >
                set ul=0
 <      But you can also get Vi compatibility by including the 'u' flag in
        'cpoptions', and still be able to use CTRL-R to repeat undo.
@@ -9875,9 +9878,9 @@ A jump table for the options with a short description can be found at |Q_op|.
                        *'visualbell'* *'vb'* *'novisualbell'* *'novb'* *beep*
 'visualbell' 'vb'      boolean (default off)
                        global
-       Use a visual bell instead of beeping.  The terminal code to display the
-       visual bell is given with 't_vb'.  When no beep or flash is wanted,
-       use: >
+       Use a visual bell instead of beeping.  The terminal code to display
+       the visual bell is given with 't_vb'.  When no beep or flash is
+       wanted, use: >
                :set vb t_vb=
 <      If you want a short flash, you can use this on many terminals: >
                :set vb t_vb=\e[?5h$<100>\e[?5l
@@ -9885,8 +9888,9 @@ A jump table for the options with a short description can be found at |Q_op|.
        to get a shorter or longer flash.
 
        Note: Vim will limit the bell to once per half a second.  This avoids
-       having to wait for the flashing to finish when there are lots of bells,
-       e.g. on key repeat.  This also happens without 'visualbell' set.
+       having to wait for the flashing to finish when there are lots of
+       bells, e.g. on key repeat.  This also happens without 'visualbell'
+       set.
 
        In the GUI, 't_vb' defaults to "<Esc>|f", which inverts the display
        for 20 msec.  If you want to use a different time, use "<Esc>|40f",
@@ -9973,10 +9977,11 @@ A jump table for the options with a short description can be found at |Q_op|.
 'wildcharm' 'wcm'      number  (default: none (0))
                        global
        'wildcharm' works exactly like 'wildchar', except that it is
-       recognized when used inside a macro.  You can find "spare" command-line
-       keys suitable for this option by looking at |ex-edit-index|.  Normally
-       you'll never actually type 'wildcharm', just use it in mappings that
-       automatically invoke completion mode, e.g.: >
+       recognized when used inside a macro.  You can find "spare"
+       command-line keys suitable for this option by looking at
+       |ex-edit-index|.  Normally you'll never actually type 'wildcharm',
+       just use it in mappings that automatically invoke completion mode,
+       e.g.: >
                :set wcm=<C-Z>
                :cnoremap ss so $vim/sessions/*.vim<C-Z>
 <      Then after typing :ss you can use CTRL-P & CTRL-N.
index ff6177747725d9cac6ca407adc822a480df9f2fa..0f232a39f0f9592f5696dc919ee341ab015c4701 100644 (file)
@@ -1,4 +1,4 @@
-*pi_getscript.txt*  For Vim version 9.1.  Last change: 2025 Aug 10
+*pi_getscript.txt*  For Vim version 9.1.  Last change: 2026 Jan 30
 >
                GETSCRIPT REFERENCE MANUAL  by Charles E. Campbell
 <
@@ -57,7 +57,8 @@ The GetLatestVimScripts.dist file serves as an example and a template for your
 own personal list.  Feel free to remove all the scripts mentioned within it;
 the "important" part of it is the first two lines.
 
-Your computer needs to have wget or curl for GetLatestVimScripts to do its work.
+Your computer needs to have wget or curl for GetLatestVimScripts to do its
+work.
 
        1. if compressed:  gunzip getscript.vmb.gz
        2. Unix:
index f498e57f931918a9aea3c170afc80fa0b98fd3dd..7e2d412ff66623ead6e9cd15dc695b403730514d 100644 (file)
@@ -1,4 +1,4 @@
-*pi_vimball.txt*       For Vim version 9.1.  Last change: 2025 Aug 06
+*pi_vimball.txt*       For Vim version 9.1.  Last change: 2026 Jan 30
 
                               ----------------
                               Vimball Archiver
@@ -9,13 +9,13 @@ Author:  Charles E. Campbell  <NcampObell@SdrPchip.AorgM-NOSPAM>
 Copyright: (c) 2004-2015 by Charles E. Campbell                *Vimball-copyright*
        The VIM LICENSE (see |copyright|) applies to the files in this
        package, including vimballPlugin.vim, vimball.vim, and pi_vimball.txt.
-       except use "vimball" instead of "VIM".  Like anything else that's free,
-       vimball.vim and its associated files are provided *as is* and comes with
-       no warranty of any kind, either expressed or implied.  No guarantees
-       of merchantability.  No guarantees of suitability for any purpose.  By
-       using this plugin, you agree that in no event will the copyright
-       holder be liable for any damages resulting from the use of this
-       software. Use at your own risk!
+       except use "vimball" instead of "VIM".  Like anything else that's
+       free, vimball.vim and its associated files are provided *as is* and
+       comes with no warranty of any kind, either expressed or implied.  No
+       guarantees of merchantability.  No guarantees of suitability for any
+       purpose.  By using this plugin, you agree that in no event will the
+       copyright holder be liable for any damages resulting from the use of
+       this software. Use at your own risk!
 
 ==============================================================================
 1. Contents                            *vba* *vimball* *vimball-contents*
@@ -248,8 +248,8 @@ WINDOWS                                                     *vimball-windows*
        13 : May 01, 2006 * exists("&acd") used to determine if the acd
                            option exists
        12 : May 01, 2006 * bugfix - the 'acd' option is not always defined
-       11 : Apr 27, 2006 * VimballList would create missing subdirectories that
-                           the vimball specified were needed.  Fixed.
+       11 : Apr 27, 2006 * VimballList would create missing subdirectories
+                           that the vimball specified were needed.  Fixed.
        10 : Apr 27, 2006 * moved all setting saving/restoration to a pair of
                            functions.  Included some more settings in them
                            which frequently cause trouble.
index 73e4205d7b8845172100ed5c509ed4b833950dce..cb97fcdc183254b6204b90f9f401cc1d547012be 100644 (file)
@@ -1,4 +1,4 @@
-*quickfix.txt*  For Vim version 9.1.  Last change: 2025 Dec 27
+*quickfix.txt*  For Vim version 9.1.  Last change: 2026 Jan 30
 
 
                  VIM REFERENCE MANUAL    by Bram Moolenaar
@@ -491,8 +491,8 @@ entries parsed from lines.  The following shows how to use a custom
 
 EXECUTE A COMMAND IN ALL THE BUFFERS IN QUICKFIX OR LOCATION LIST:
                                                        *:cdo*
-:cdo[!] {cmd}          Execute {cmd} in each valid entry in the quickfix list.
-                       It works like doing this: >
+:cdo[!] {cmd}          Execute {cmd} in each valid entry in the quickfix
+                       list.  It works like doing this: >
                                :cfirst
                                :{cmd}
                                :cnext
@@ -2031,9 +2031,9 @@ case they have to precede the letter, e.g. '%+A' or '%-G':
        %-              do not include the matching multi-line in any output
        %+              include the whole matching line in the %m error string
 
-One prefix is only useful in combination with '+' or '-', namely %G.  It parses
-over lines containing general information like compiler version strings or
-other headers that can be skipped.
+One prefix is only useful in combination with '+' or '-', namely %G.  It
+parses over lines containing general information like compiler version strings
+or other headers that can be skipped.
        %-G             ignore this message
        %+G             general message
 
@@ -2201,8 +2201,8 @@ prints information about entering a directory in the form "Making all in dir".
    Making all in dir2            ./dir1/dir2
    Making all in dir2            ./dir1/dir2
 
-   This can be solved by printing absolute directories in the "enter directory"
-   message or by printing "leave directory" messages.
+   This can be solved by printing absolute directories in the "enter
+   directory" message or by printing "leave directory" messages.
 
 To avoid this problem, ensure to print absolute directory names and "leave
 directory" messages.
index be31c098eb32fbfe356579d824330fc7dfe653e3..9d9157b00e104e3f58ba695dc70855633928e090 100644 (file)
@@ -1,4 +1,4 @@
-*repeat.txt*   For Vim version 9.1.  Last change: 2025 Nov 09
+*repeat.txt*   For Vim version 9.1.  Last change: 2026 Jan 30
 
 
                  VIM REFERENCE MANUAL    by Bram Moolenaar
@@ -1220,7 +1220,8 @@ Additionally, these commands can be used:
                                                        *>bt*
                                                        *>backtrace*
                                                        *>where*
-       backtrace       Show the call stacktrace for current debugging session.
+       backtrace       Show the call stacktrace for current debugging
+                       session.
        bt
        where
                                                        *>frame*
index 227b77dacbd9cf3e3e00137cc241d7a70e626981..3e37b49fe49488248e8824cb311c32092558a2b2 100644 (file)
@@ -1,4 +1,4 @@
-*starting.txt* For Vim version 9.1.  Last change: 2025 Dec 20
+*starting.txt* For Vim version 9.1.  Last change: 2026 Jan 30
 
 
                  VIM REFERENCE MANUAL    by Bram Moolenaar
@@ -890,8 +890,8 @@ accordingly.  Vim proceeds in this order:
        III The environment variable EXINIT.
            The value of $EXINIT is used as an Ex command line.
        IV  The user exrc file(s).  Same as for the user vimrc file, but with
-           "vimrc" replaced by "exrc".  But only one of ".exrc" and "_exrc" is
-           used, depending on the system.  And without the (*)!
+           "vimrc" replaced by "exrc".  But only one of ".exrc" and "_exrc"
+           is used, depending on the system.  And without the (*)!
        V   The default vimrc file, $VIMRUNTIME/defaults.vim.  This sets up
            options values and has "syntax on" and "filetype on" commands,
            which is what most new users will want.  See |defaults.vim|.
index 741e01ea086f57d2d1d1b467ad2b5e00950a2852..20525f8e598c765dcb15956879ffbdaf4ba52950 100644 (file)
@@ -1,4 +1,4 @@
-*syntax.txt*   For Vim version 9.1.  Last change: 2026 Jan 27
+*syntax.txt*   For Vim version 9.1.  Last change: 2026 Jan 30
 
 
                  VIM REFERENCE MANUAL    by Bram Moolenaar
@@ -487,10 +487,10 @@ specifying each command separately.
                                    *hl-TOhtmlProgress* *TOhtml-progress-color*
 When displayed, the progress bar will show colored boxes along the statusline
 as the HTML conversion proceeds.  By default, the background color as the
-current "DiffDelete" highlight group is used.  If "DiffDelete" and "StatusLine"
-have the same background color, TOhtml will automatically adjust the color to
-differ.  If you do not like the automatically selected colors, you can define
-your own highlight colors for the progress bar.  Example: >
+current "DiffDelete" highlight group is used.  If "DiffDelete" and
+"StatusLine" have the same background color, TOhtml will automatically adjust
+the color to differ.  If you do not like the automatically selected colors,
+you can define your own highlight colors for the progress bar.  Example: >
 
        hi TOhtmlProgress guifg=#c0ffee ctermbg=7
 <
@@ -615,9 +615,9 @@ browsers; the <input> tags get pasted with the text.
 
 When "fallback" (default value), the same <input> elements are generated for
 older browsers, but newer browsers (detected by CSS feature query) hide the
-<input> elements and instead use generated content in an ::before pseudoelement
-to display the uncopyable text.  This method should work with the largest
-number of browsers, both old and new.
+<input> elements and instead use generated content in an ::before
+pseudoelement to display the uncopyable text.  This method should work with
+the largest number of browsers, both old and new.
 
 When "none", the <input> elements are not generated at all.  Only the
 generated-content method is used.  This means that old browsers, notably
index 17f72346395d525f186608d2d7cfdec9ab352ccb..983c1c9fe4b415e4bc03ce744d83cb4f5c739d8b 100644 (file)
@@ -1,4 +1,4 @@
-*tagsrch.txt*  For Vim version 9.1.  Last change: 2025 Nov 09
+*tagsrch.txt*  For Vim version 9.1.  Last change: 2026 Jan 30
 
 
                  VIM REFERENCE MANUAL    by Bram Moolenaar
@@ -872,9 +872,9 @@ Common arguments for the commands above:
        When excluded, a match is ignored when the line is recognized as a
        comment (according to 'comments'), or the match is in a C comment
        (after "//" or inside /* */).  Note that a match may be missed if a
-       line is recognized as a comment, but the comment ends halfway the line.
-       And if the line is a comment, but it is not recognized (according to
-       'comments') a match may be found in it anyway.  Example: >
+       line is recognized as a comment, but the comment ends halfway the
+       line.  And if the line is a comment, but it is not recognized
+       (according to 'comments') a match may be found in it anyway.  Example: >
                /* comment
                   foobar */
 <      A match for "foobar" is found, because this line is not recognized as
index 4504c62d316519f973a69643062f17bc24e1d59d..f3f91376672ce3002a122f57be2f26eea53520bf 100644 (file)
@@ -1,4 +1,4 @@
-*term.txt*     For Vim version 9.1.  Last change: 2025 Nov 11
+*term.txt*     For Vim version 9.1.  Last change: 2026 Jan 30
 
 
                  VIM REFERENCE MANUAL    by Bram Moolenaar
@@ -196,8 +196,8 @@ try the entry ":ku=\233A:".
 
 Some termcap entries have the entry ":ku=\E[A:".  But the Amiga really sends
 "\233A".  On output "\E[" and "\233" are often equivalent, on input they
-aren't.  You will have to change the termcap entry, or change the key code with
-the :set command to fix this.
+aren't.  You will have to change the termcap entry, or change the key code
+with the :set command to fix this.
 
 Many cursor key codes start with an <Esc>.  Vim must find out if this is a
 single hit of the <Esc> key or the start of a cursor key sequence.  It waits
index eb9a04b6b4fbb30a7f0041396aa475d2442d0bfc..899c06ecf29301a2cc1ddab18d78087fe1199327 100644 (file)
@@ -1,4 +1,4 @@
-*vi_diff.txt*  For Vim version 9.1.  Last change: 2025 Nov 09
+*vi_diff.txt*  For Vim version 9.1.  Last change: 2026 Jan 30
 
 
                  VIM REFERENCE MANUAL    by Bram Moolenaar
@@ -838,7 +838,8 @@ The following Ex commands are supported by Vi: ~
 `:delete`      delete lines
 `:edit`                edit a file
 `:exit`                same as `:xit`
-`:file`                show or set the current file name; Vi: without the column number
+`:file`                show or set the current file name; Vi: without the column
+               number
 `:global`      execute commands for matching lines
 `:insert`      insert text
 `:join`                join lines; Vi: not :join!
@@ -1360,7 +1361,8 @@ These are remarks about running the POSIX test suite:
 - ex test 368 fails because shell command isn't echoed in silent mode.
 - ex test 394 fails because "=" command output isn't visible in silent mode.
 - ex test 411 fails because test file is wrong, contains stray ':'.
-- ex test 475 and 476 fail because reprint output isn't visible in silent mode.
+- ex test 475 and 476 fail because reprint output isn't visible in silent
+  mode.
 - ex test 480 and 481 fail because the tags file has spaces instead of a tab.
 - ex test 502 fails because .exrc isn't read in silent mode.
 - ex test 509 fails because .exrc isn't read in silent mode. and exit code is