diff options
Diffstat (limited to 'src/nvim/options.lua')
-rw-r--r-- | src/nvim/options.lua | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/src/nvim/options.lua b/src/nvim/options.lua index e70fe8614f..d5f41c5a89 100644 --- a/src/nvim/options.lua +++ b/src/nvim/options.lua @@ -2932,7 +2932,7 @@ return { "auto": resize to the minimum amount of folds to display. "auto:[1-9]": resize to accommodate multiple folds up to the selected level - 0: to disable foldcolumn + "0": to disable foldcolumn "[1-9]": to display a fixed number of columns See |folding|. ]=], @@ -5452,9 +5452,11 @@ return { ]=], enable_if = false, full_name = 'mousehide', + redraw = { 'ui_option' }, scope = { 'global' }, short_desc = N_('hide mouse pointer while typing'), type = 'bool', + varname = 'p_mh', }, { abbreviation = 'mousem', @@ -5924,6 +5926,10 @@ return { option may be relative or absolute. - Use commas to separate directory names: > :set path=.,/usr/local/include,/usr/include + < - Spaces can also be used to separate directory names. To have a + space in a directory name, precede it with an extra backslash, and + escape the space: > + :set path=.,/dir/with\\\ space < - To include a comma in a directory name precede it with an extra backslash: > :set path=.,/dir/with\\,comma @@ -8673,8 +8679,8 @@ return { deny_duplicates = true, desc = [=[ Filenames for the tag command, separated by spaces or commas. To - include a space or comma in a file name, precede it with a backslash - (see |option-backslash| about including spaces and backslashes). + include a space or comma in a file name, precede it with backslashes + (see |option-backslash| about including spaces/commas and backslashes). When a file name starts with "./", the '.' is replaced with the path of the current file. But only when the 'd' flag is not included in 'cpoptions'. Environment variables are expanded |:set_env|. Also see |