diff --git a/runtime/doc/options.txt b/runtime/doc/options.txt index b1075bf845..ae2a900520 100644 --- a/runtime/doc/options.txt +++ b/runtime/doc/options.txt @@ -971,7 +971,7 @@ A jump table for the options with a short description can be found at |Q_op|. ensure file name uniqueness in the backup directory. On Win32, it is also possible to end with "\\". However, When a separating comma is following, you must use "//", since "\\" will - include the comma in the file name. Therefore it is recommended to + include the comma in the file name. Therefore it is recommended to use '//', instead of '\\'. - Environment variables are expanded |:set_env|. - Careful with '\' characters, type one before a space, type two to @@ -4721,7 +4721,7 @@ A jump table for the options with a short description can be found at |Q_op|. fit the highest line number in the buffer respectively the number of rows in the window, depending on whether 'number' or 'relativenumber' is set. Thus with the Vim default of 4 there is room for a line - number up to 999. When the buffer has 1000 lines five columns will be + number up to 999. When the buffer has 1000 lines five columns will be used. The minimum value is 1, the maximum value is 20. *'omnifunc'* *'ofu'* diff --git a/runtime/lua/vim/_meta/options.lua b/runtime/lua/vim/_meta/options.lua index e0176192c8..4a43e9f4e5 100644 --- a/runtime/lua/vim/_meta/options.lua +++ b/runtime/lua/vim/_meta/options.lua @@ -381,7 +381,7 @@ vim.go.bkc = vim.go.backupcopy --- ensure file name uniqueness in the backup directory. --- On Win32, it is also possible to end with "\\". However, When a --- separating comma is following, you must use "//", since "\\" will ---- include the comma in the file name. Therefore it is recommended to +--- include the comma in the file name. Therefore it is recommended to --- use '//', instead of '\\'. --- - Environment variables are expanded `:set_env`. --- - Careful with '\' characters, type one before a space, type two to @@ -4866,7 +4866,7 @@ vim.wo.nu = vim.wo.number --- fit the highest line number in the buffer respectively the number of --- rows in the window, depending on whether 'number' or 'relativenumber' --- is set. Thus with the Vim default of 4 there is room for a line ---- number up to 999. When the buffer has 1000 lines five columns will be +--- number up to 999. When the buffer has 1000 lines five columns will be --- used. The minimum value is 1, the maximum value is 20. --- --- @type integer diff --git a/src/nvim/options.lua b/src/nvim/options.lua index 1d9882204a..fcbf4c0375 100644 --- a/src/nvim/options.lua +++ b/src/nvim/options.lua @@ -549,7 +549,7 @@ local options = { ensure file name uniqueness in the backup directory. On Win32, it is also possible to end with "\\". However, When a separating comma is following, you must use "//", since "\\" will - include the comma in the file name. Therefore it is recommended to + include the comma in the file name. Therefore it is recommended to use '//', instead of '\\'. - Environment variables are expanded |:set_env|. - Careful with '\' characters, type one before a space, type two to @@ -6376,7 +6376,7 @@ local options = { fit the highest line number in the buffer respectively the number of rows in the window, depending on whether 'number' or 'relativenumber' is set. Thus with the Vim default of 4 there is room for a line - number up to 999. When the buffer has 1000 lines five columns will be + number up to 999. When the buffer has 1000 lines five columns will be used. The minimum value is 1, the maximum value is 20. ]=], full_name = 'numberwidth',