diff options
author | Bram Moolenaar <Bram@vim.org> | 2021-04-16 19:58:22 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2021-04-16 19:58:22 +0200 |
commit | 635bd60804966803490287e97460ecdc91d5fe0a (patch) | |
tree | fe8e75ace9e40b0e06f394e689296afe2b6042a7 /src/option.h | |
parent | aa1959bd5e82350bb4a82d9a5188c29d70706ec4 (diff) | |
download | vim-git-635bd60804966803490287e97460ecdc91d5fe0a.tar.gz |
patch 8.2.2772: problems when restoring 'runtimepath' from a session filev8.2.2772
Problem: Problems when restoring 'runtimepath' from a session file.
Solution: Add the "skiprtp" item in 'sessionoptions'.
Diffstat (limited to 'src/option.h')
-rw-r--r-- | src/option.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/option.h b/src/option.h index 0b1183fec..30053cc6c 100644 --- a/src/option.h +++ b/src/option.h @@ -864,6 +864,7 @@ EXTERN unsigned ssop_flags; # define SSOP_CURSOR 0x4000 # define SSOP_TABPAGES 0x8000 # define SSOP_TERMINAL 0x10000 +# define SSOP_SKIP_RTP 0x20000 #endif EXTERN char_u *p_sh; // 'shell' EXTERN char_u *p_shcf; // 'shellcmdflag' |