aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMichael Reed <m.reed@mykolab.com>2015-07-15 22:45:14 -0400
committerMichael Reed <m.reed@mykolab.com>2015-07-17 17:36:38 -0400
commit4d79edccdc0243a02a20ef46184b8f87f2bda290 (patch)
treebbeb5ccec44fb5bc6dbed4d4eb91dae9bc5247b6 /src
parent5e9f9a875645af1e3c858daba799fe4a9021a767 (diff)
downloadrneovim-4d79edccdc0243a02a20ef46184b8f87f2bda290.tar.gz
rneovim-4d79edccdc0243a02a20ef46184b8f87f2bda290.tar.bz2
rneovim-4d79edccdc0243a02a20ef46184b8f87f2bda290.zip
Cleanup after #3007 #3020
'guioptions' is mentioned in the "Option Defaults" section of vim_diff, and while its default did indeed change, it was only because the 't' flag was removed. To make that clear, move its reference to the "Removed Features" section instead. Remove stray instance of 't' flag from GO_ALL. Most if not all of the GO_* #defines are unused, but lets keep them for now as it's not clear whether they won't be used by Nvim GUIs.
Diffstat (limited to 'src')
-rw-r--r--src/nvim/option_defs.h2
1 files changed, 1 insertions, 1 deletions
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 */