]> git.ipfire.org Git - thirdparty/vim.git/commitdiff
runtime(doc): Tweak documentation style a bit
authorh-east <h.east.727@gmail.com>
Tue, 3 Dec 2024 19:37:52 +0000 (20:37 +0100)
committerChristian Brabandt <cb@256bit.org>
Tue, 3 Dec 2024 19:38:30 +0000 (20:38 +0100)
closes: #16164

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

index d0f0c7b030b3e12d25c1f8a230de77502883a76f..ac10590b1da67b54407ca1d417876f0f1b0ad106 100644 (file)
@@ -1,4 +1,4 @@
-*builtin.txt*  For Vim version 9.1.  Last change: 2024 Nov 26
+*builtin.txt*  For Vim version 9.1.  Last change: 2024 Dec 03
 
 
                  VIM REFERENCE MANUAL    by Bram Moolenaar
@@ -3789,7 +3789,7 @@ getbufvar({buf}, {varname} [, {def}])                             *getbufvar()*
 
 getcellpixels()                                                *getcellpixels()*
                Returns a |List| of terminal cell pixel size.
-               List format is [xpixels, ypixels].
+               List format is [xpixel, ypixel].
 
                Only works on Unix (terminal and gVim) and Windows (gVim only).
                Returns [] on other systems or on failure.
index 1de1057b22dabe1e25144ee16abd3e519b580129..273ea64dec6477416fc18d753699fc2584d3bc97 100644 (file)
@@ -1,4 +1,4 @@
-*options.txt*  For Vim version 9.1.  Last change: 2024 Dec 01
+*options.txt*  For Vim version 9.1.  Last change: 2024 Dec 03
 
 
                  VIM REFERENCE MANUAL    by Bram Moolenaar
@@ -1069,7 +1069,8 @@ A jump table for the options with a short description can be found at |Q_op|.
        done with ":syntax on".
 
                                                        *'backspace'* *'bs'*
-'backspace' 'bs'       string  (Vim default: "indent,eol,start", Vi default: "")
+'backspace' 'bs'       string  (Vim default: "indent,eol,start",
+                                Vi default:  "")
                        global
        Influences the working of <BS>, <Del>, CTRL-W and CTRL-U in Insert
        mode.  This is a list of items, separated by commas.  Each item allows
@@ -2155,8 +2156,8 @@ A jump table for the options with a short description can be found at |Q_op|.
                    "menu" or "menuone". No effect if "longest" is present.
 
           noselect Same as "noinsert", except that no menu item is
-                   pre-selected. If both "noinsert" and "noselect" are present,
-                   "noselect" has precedence.
+                   pre-selected. If both "noinsert" and "noselect" are
+                   present, "noselect" has precedence.
 
           fuzzy    Enable |fuzzy-matching| for completion candidates. This
                    allows for more flexible and intuitive matching, where
index a0bfd6034ee5ce170c1f287875c4c271a964f1c8..da5b1481e1d7c5389816c28e7594b62bad310d02 100644 (file)
@@ -1,4 +1,4 @@
-*terminal.txt* For Vim version 9.1.  Last change: 2024 Nov 23
+*terminal.txt* For Vim version 9.1.  Last change: 2024 Dec 03
 
 
                  VIM REFERENCE MANUAL    by Bram Moolenaar
@@ -1759,8 +1759,8 @@ mechanisms like `echo` statements (or similar) to help you in your job.
 For this reason, you can set: >
     let g:termdebug_config['debug'] = true
 <
-This sets the `DEBUG` variable to `true` in the source code that you can use
-within the source code. An example of its usage follows: >
+This sets the `DEBUG` variable to `true`, which can be referenced in the
+source code.  An example of its usage follows: >
     if exists('g:termdebug_loaded')
       if DEBUG
        Echoerr('Termdebug already loaded.')