diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2024-10-07 08:27:38 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-07 08:27:38 -0700 |
commit | 61f1b091ea97793f9b644cebf6c84cf6bbb4f0bc (patch) | |
tree | 114b049d97f362372486a489668cc8e07063eb76 /runtime/lua/vim/_meta/options.lua | |
parent | 50f006b61774311e67e6948cd863bd503e4bcdfb (diff) | |
download | rneovim-61f1b091ea97793f9b644cebf6c84cf6bbb4f0bc.tar.gz rneovim-61f1b091ea97793f9b644cebf6c84cf6bbb4f0bc.tar.bz2 rneovim-61f1b091ea97793f9b644cebf6c84cf6bbb4f0bc.zip |
docs: dev-arch, focusable windows #30510
- 'statuscolumn' is no longer experimental
- add tags for popular searches on neovim.io
Diffstat (limited to 'runtime/lua/vim/_meta/options.lua')
-rw-r--r-- | runtime/lua/vim/_meta/options.lua | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/runtime/lua/vim/_meta/options.lua b/runtime/lua/vim/_meta/options.lua index 2bff777899..ce3ff4f861 100644 --- a/runtime/lua/vim/_meta/options.lua +++ b/runtime/lua/vim/_meta/options.lua @@ -914,11 +914,10 @@ vim.go.cb = vim.go.clipboard --- used. The command-line will cover the last line of the screen when --- shown. --- ---- WARNING: `cmdheight=0` is considered experimental. Expect some ---- unwanted behaviour. Some 'shortmess' flags and similar ---- mechanism might fail to take effect, causing unwanted hit-enter ---- prompts. Some informative messages, both from Nvim itself and ---- plugins, will not be displayed. +--- WARNING: `cmdheight=0` is EXPERIMENTAL. Expect some unwanted behaviour. +--- Some 'shortmess' flags and similar mechanism might fail to take effect, +--- causing unwanted hit-enter prompts. Some informative messages, both +--- from Nvim itself and plugins, will not be displayed. --- --- @type integer vim.o.cmdheight = 1 @@ -6431,7 +6430,6 @@ vim.o.sol = vim.o.startofline vim.go.startofline = vim.o.startofline vim.go.sol = vim.go.startofline ---- EXPERIMENTAL --- When non-empty, this option determines the content of the area to the --- side of a window, normally containing the fold, sign and number columns. --- The format of this option is like that of 'statusline'. |