diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-04-27 13:04:13 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-04-27 13:04:13 +0200 |
commit | ac9fb18020d7e8bf16d02d45fbb02cf47328aaf7 (patch) | |
tree | 439cf73bcd9696032bfe85cd170b0623a9dffa9a /src/feature.h | |
parent | 5431589d25e73892fcf7ad1eaca53f742c1c9303 (diff) | |
download | vim-git-ac9fb18020d7e8bf16d02d45fbb02cf47328aaf7.tar.gz |
patch 8.1.1210: support for user commands is spread outv8.1.1210
Problem: Support for user commands is spread out. No good reason to make
user commands optional.
Solution: Move user command support to usercmd.c. Always enable the
user_commands feature.
Diffstat (limited to 'src/feature.h')
-rw-r--r-- | src/feature.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/feature.h b/src/feature.h index b900569a5..95701a79a 100644 --- a/src/feature.h +++ b/src/feature.h @@ -379,10 +379,8 @@ /* * +user_commands Allow the user to define his own commands. + * Now always enabled. */ -#ifdef FEAT_NORMAL -# define FEAT_USR_CMDS -#endif /* * +printer ":hardcopy" command |