comparison src/vim.h @ 19181:94eda51ba9ba v8.2.0149

patch 8.2.0149: maintaining a Vim9 branch separately is more work Commit: https://github.com/vim/vim/commit/8a7d6542b33e5d2b352262305c3bfdb2d14e1cf8 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jan 26 15:56:19 2020 +0100 patch 8.2.0149: maintaining a Vim9 branch separately is more work Problem: Maintaining a Vim9 branch separately is more work. Solution: Merge the Vim9 script changes.
author Bram Moolenaar <Bram@vim.org>
date Sun, 26 Jan 2020 16:00:05 +0100
parents 73f893d8776a
children 8cbadf7fb9d4
comparison
equal deleted inserted replaced
19180:8edf0aeb71b9 19181:94eda51ba9ba
2149 USEPOPUP_NONE, 2149 USEPOPUP_NONE,
2150 USEPOPUP_NORMAL, // use info popup 2150 USEPOPUP_NORMAL, // use info popup
2151 USEPOPUP_HIDDEN // use info popup initially hidden 2151 USEPOPUP_HIDDEN // use info popup initially hidden
2152 } use_popup_T; 2152 } use_popup_T;
2153 2153
2154 // Flags for assignment functions.
2155 #define LET_IS_CONST 1 // ":const"
2156 #define LET_NO_COMMAND 2 // "var = expr" without ":let" or ":const"
2157
2154 #include "ex_cmds.h" // Ex command defines 2158 #include "ex_cmds.h" // Ex command defines
2155 #include "spell.h" // spell checking stuff 2159 #include "spell.h" // spell checking stuff
2156 2160
2157 #include "proto.h" // function prototypes 2161 #include "proto.h" // function prototypes
2158 2162