aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--runtime/doc/vim_diff.txt2
-rw-r--r--src/nvim/option_defs.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/runtime/doc/vim_diff.txt b/runtime/doc/vim_diff.txt
index 1d8d129338..557f23dd4b 100644
--- a/runtime/doc/vim_diff.txt
+++ b/runtime/doc/vim_diff.txt
@@ -35,7 +35,6 @@ these differences.
- 'display' defaults to "lastline"
- 'encoding' defaults to "utf-8"
- 'formatoptions' defaults to "tcqj"
-- 'guioptions' doesn't include "t"
- 'hlsearch' is set by default
- 'incsearch' is set by default
- 'langnoremap' is set by default
@@ -136,6 +135,7 @@ Highlight groups:
|hl-VisualNOS|
Other options:
+ 'guioptions' (only the 't' flag was removed)
'guipty'
'macatsui'
'shelltype'
diff --git a/src/nvim/option_defs.h b/src/nvim/option_defs.h
index a33ecd099b..d1fe91f49c 100644
--- a/src/nvim/option_defs.h
+++ b/src/nvim/option_defs.h
@@ -203,7 +203,7 @@
#define GO_TOOLBAR 'T' /* add toolbar */
#define GO_FOOTER 'F' /* add footer */
#define GO_VERTICAL 'v' /* arrange dialog buttons vertically */
-#define GO_ALL "aAbcefFghilmMprtTv" /* all possible flags for 'go' */
+#define GO_ALL "aAbcefFghilmMprTv" /* all possible flags for 'go' */
/* flags for 'comments' option */
#define COM_NEST 'n' /* comments strings nest */