diff options
author | Gregory Anders <8965202+gpanders@users.noreply.github.com> | 2024-09-11 15:32:08 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-11 20:32:08 +0000 |
commit | 98ba65b8be8cb2dde839502357e70916c4a3e37a (patch) | |
tree | 4272b21c03fe5403b0a71d919d8169e3a4963084 /runtime/lua/vim/_meta/options.lua | |
parent | f9bf64d74641f33961fe1d6c1592b65d2744298f (diff) | |
download | rneovim-98ba65b8be8cb2dde839502357e70916c4a3e37a.tar.gz rneovim-98ba65b8be8cb2dde839502357e70916c4a3e37a.tar.bz2 rneovim-98ba65b8be8cb2dde839502357e70916c4a3e37a.zip |
fix: replace NVIM with Nvim in default titlestring (#30348)
Diffstat (limited to 'runtime/lua/vim/_meta/options.lua')
-rw-r--r-- | runtime/lua/vim/_meta/options.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/lua/vim/_meta/options.lua b/runtime/lua/vim/_meta/options.lua index 787e661402..7456be0ae0 100644 --- a/runtime/lua/vim/_meta/options.lua +++ b/runtime/lua/vim/_meta/options.lua @@ -7255,7 +7255,7 @@ vim.go.tm = vim.go.timeoutlen --- When on, the title of the window will be set to the value of --- 'titlestring' (if it is not empty), or to: ---- filename [+=-] (path) - NVIM +--- filename [+=-] (path) - Nvim --- Where: --- filename the name of the file being edited --- - indicates the file cannot be modified, 'ma' off @@ -7263,7 +7263,7 @@ vim.go.tm = vim.go.timeoutlen --- = indicates the file is read-only --- =+ indicates the file is read-only and modified --- (path) is the path of the file being edited ---- - NVIM the server name `v:servername` or "NVIM" +--- - Nvim the server name `v:servername` or "Nvim" --- --- @type boolean vim.o.title = false |