comparison src/vim.h @ 19137:69f0e9b5c107 v8.2.0128

patch 8.2.0128: cannot list options one per line Commit: https://github.com/vim/vim/commit/6b915c0c0ee7ef82f8d3d310a4345e098cb929b0 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Jan 18 15:53:19 2020 +0100 patch 8.2.0128: cannot list options one per line Problem: Cannot list options one per line. Solution: Use ":set!" to list one option per line.
author Bram Moolenaar <Bram@vim.org>
date Sat, 18 Jan 2020 16:00:04 +0100
parents ba9f50bfda83
children 73f893d8776a
comparison
equal deleted inserted replaced
19136:bbce494fe8df 19137:69f0e9b5c107
1227 /* 1227 /*
1228 * "flags" values for option-setting functions. 1228 * "flags" values for option-setting functions.
1229 * When OPT_GLOBAL and OPT_LOCAL are both missing, set both local and global 1229 * When OPT_GLOBAL and OPT_LOCAL are both missing, set both local and global
1230 * values, get local value. 1230 * values, get local value.
1231 */ 1231 */
1232 #define OPT_FREE 1 // free old value if it was allocated 1232 #define OPT_FREE 0x01 // free old value if it was allocated
1233 #define OPT_GLOBAL 2 // use global value 1233 #define OPT_GLOBAL 0x02 // use global value
1234 #define OPT_LOCAL 4 // use local value 1234 #define OPT_LOCAL 0x04 // use local value
1235 #define OPT_MODELINE 8 // option in modeline 1235 #define OPT_MODELINE 0x08 // option in modeline
1236 #define OPT_WINONLY 16 // only set window-local options 1236 #define OPT_WINONLY 0x10 // only set window-local options
1237 #define OPT_NOWIN 32 // don't set window-local options 1237 #define OPT_NOWIN 0x20 // don't set window-local options
1238 #define OPT_ONECOLUMN 0x40 // list options one per line
1238 1239
1239 // Magic chars used in confirm dialog strings 1240 // Magic chars used in confirm dialog strings
1240 #define DLG_BUTTON_SEP '\n' 1241 #define DLG_BUTTON_SEP '\n'
1241 #define DLG_HOTKEY_CHAR '&' 1242 #define DLG_HOTKEY_CHAR '&'
1242 1243