]> git.ipfire.org Git - thirdparty/vim.git/commitdiff
runtime(doc): fix a few style issues
authorh-east <h.east.727@gmail.com>
Mon, 12 Aug 2024 16:26:08 +0000 (18:26 +0200)
committerChristian Brabandt <cb@256bit.org>
Mon, 12 Aug 2024 16:27:41 +0000 (18:27 +0200)
closes: #15478

Signed-off-by: h-east <h.east.727@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
runtime/doc/autocmd.txt
runtime/doc/options.txt
runtime/doc/repeat.txt

index f6d32db398630f13fb3af9e7103874ddf29f22c5..9c4e87013c70637b996b1c60fd7c9664b12accc5 100644 (file)
@@ -1,4 +1,4 @@
-*autocmd.txt*   For Vim version 9.1.  Last change: 2024 Aug 10
+*autocmd.txt*   For Vim version 9.1.  Last change: 2024 Aug 12
 
 
                  VIM REFERENCE MANUAL    by Bram Moolenaar
@@ -1428,8 +1428,8 @@ WinLeave                  Before leaving a window.  If the window to be
 WinNewPre                      Before creating a new window. Triggered
                                before commands that modify window layout by
                                creating a split.
-                               Not done for creating tabs or for the first
-                               window, as the window structure is not
+                               Not done when creating tab pages and for the
+                               first window, as the window structure is not
                                initialized yet and so is generally not safe.
                                It is not allowed to modify window layout
                                while executing commands for the WinNewPre
index 8f8f70a74ee28e1ae7b78cae6f42012a24c89037..3ec8a3a80d384022a856ab6bdb91661515244218 100644 (file)
@@ -1,4 +1,4 @@
-*options.txt*  For Vim version 9.1.  Last change: 2024 Jul 28
+*options.txt*  For Vim version 9.1.  Last change: 2024 Aug 12
 
 
                  VIM REFERENCE MANUAL    by Bram Moolenaar
@@ -2260,7 +2260,7 @@ A jump table for the options with a short description can be found at |Q_op|.
                                                *'cpoptions'* *'cpo'* *cpo*
 'cpoptions' 'cpo'      string  (Vim default: "aABceFsz",
                                 Vi default:  all flags, except "#{|&/\."
-                                 |$VIM_POSIX|:  all flags)
+                                |$VIM_POSIX|:  all flags)
                        global
        A sequence of single character flags.  When a character is present
        this indicates Vi-compatible behavior.  This is used for things where
index f2ba03f90bcfeab25fc233a80a7dcd7c62fc29c5..726aec3691e9be990a164c864ecfb204bbaa6e0e 100644 (file)
@@ -1,4 +1,4 @@
-*repeat.txt*    For Vim version 9.1.  Last change: 2024 Jul 11
+*repeat.txt*    For Vim version 9.1.  Last change: 2024 Aug 12
 
 
                  VIM REFERENCE MANUAL    by Bram Moolenaar
@@ -793,7 +793,8 @@ messages: >
        :echo gettext("Hello", "foobar")
 <
 Where:
-  "Hello"      the message "Hello" to be translated into the user's language |:lang|
+  "Hello"      the message "Hello" to be translated into the user's language
+               |:lang|
   "foobar"     the package identifier, which was previously defined using the
                |bindtextdomain()| function.