comparison src/vim.h @ 24464:a56f9c2ba51c v8.2.2772

patch 8.2.2772: problems when restoring 'runtimepath' from a session file Commit: https://github.com/vim/vim/commit/635bd60804966803490287e97460ecdc91d5fe0a Author: Bram Moolenaar <Bram@vim.org> Date: Fri Apr 16 19:58:22 2021 +0200 patch 8.2.2772: problems when restoring 'runtimepath' from a session file Problem: Problems when restoring 'runtimepath' from a session file. Solution: Add the "skiprtp" item in 'sessionoptions'.
author Bram Moolenaar <Bram@vim.org>
date Fri, 16 Apr 2021 20:00:05 +0200
parents d2f9bdd938fa
children 192058cad081
comparison
equal deleted inserted replaced
24463:754a22f6d5bc 24464:a56f9c2ba51c
1199 #define OPT_MODELINE 0x08 // option in modeline 1199 #define OPT_MODELINE 0x08 // option in modeline
1200 #define OPT_WINONLY 0x10 // only set window-local options 1200 #define OPT_WINONLY 0x10 // only set window-local options
1201 #define OPT_NOWIN 0x20 // don't set window-local options 1201 #define OPT_NOWIN 0x20 // don't set window-local options
1202 #define OPT_ONECOLUMN 0x40 // list options one per line 1202 #define OPT_ONECOLUMN 0x40 // list options one per line
1203 #define OPT_NO_REDRAW 0x80 // ignore redraw flags on option 1203 #define OPT_NO_REDRAW 0x80 // ignore redraw flags on option
1204 #define OPT_SKIPRTP 0x100 // "skiprtp" in 'sessionoptions'
1204 1205
1205 // Magic chars used in confirm dialog strings 1206 // Magic chars used in confirm dialog strings
1206 #define DLG_BUTTON_SEP '\n' 1207 #define DLG_BUTTON_SEP '\n'
1207 #define DLG_HOTKEY_CHAR '&' 1208 #define DLG_HOTKEY_CHAR '&'
1208 1209