summaryrefslogtreecommitdiff
path: root/src/vim.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-01-18 15:53:19 +0100
committerBram Moolenaar <Bram@vim.org>2020-01-18 15:53:19 +0100
commit6b915c0c0ee7ef82f8d3d310a4345e098cb929b0 (patch)
tree426ab78922c56f48bd65ac7877d1f0a73c53d094 /src/vim.h
parent3029bcc094415243bad14e5720f68e857b755dad (diff)
downloadvim-git-6b915c0c0ee7ef82f8d3d310a4345e098cb929b0.tar.gz
patch 8.2.0128: cannot list options one per linev8.2.0128
Problem: Cannot list options one per line. Solution: Use ":set!" to list one option per line.
Diffstat (limited to 'src/vim.h')
-rw-r--r--src/vim.h13
1 files changed, 7 insertions, 6 deletions
diff --git a/src/vim.h b/src/vim.h
index 16949ae29..d41db1439 100644
--- a/src/vim.h
+++ b/src/vim.h
@@ -1229,12 +1229,13 @@ typedef struct {
* When OPT_GLOBAL and OPT_LOCAL are both missing, set both local and global
* values, get local value.
*/
-#define OPT_FREE 1 // free old value if it was allocated
-#define OPT_GLOBAL 2 // use global value
-#define OPT_LOCAL 4 // use local value
-#define OPT_MODELINE 8 // option in modeline
-#define OPT_WINONLY 16 // only set window-local options
-#define OPT_NOWIN 32 // don't set window-local options
+#define OPT_FREE 0x01 // free old value if it was allocated
+#define OPT_GLOBAL 0x02 // use global value
+#define OPT_LOCAL 0x04 // use local value
+#define OPT_MODELINE 0x08 // option in modeline
+#define OPT_WINONLY 0x10 // only set window-local options
+#define OPT_NOWIN 0x20 // don't set window-local options
+#define OPT_ONECOLUMN 0x40 // list options one per line
// Magic chars used in confirm dialog strings
#define DLG_BUTTON_SEP '\n'