-*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
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.
-*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
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
"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
-*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
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.')