diff options
author | Bram Moolenaar <Bram@vim.org> | 2015-11-19 17:56:13 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2015-11-19 17:56:13 +0100 |
commit | a0ed84a26897c994512873a895b9fc54e90c6845 (patch) | |
tree | 0ca54e1951f994c1d373a225fa9a537e14045f5a /src/option.h | |
parent | 32d03b34ac8a34a962f57847fc431a2b4e14efea (diff) | |
download | vim-git-a0ed84a26897c994512873a895b9fc54e90c6845.tar.gz |
patch 7.4.925v7.4.925
Problem: User may yank or put using the register being recorded in.
Solution: Add the recording register in the message. (Christian Brabandt,
closes #470)
Diffstat (limited to 'src/option.h')
-rw-r--r-- | src/option.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/option.h b/src/option.h index f87283687..c6a3e6041 100644 --- a/src/option.h +++ b/src/option.h @@ -213,7 +213,8 @@ #define SHM_ATTENTION 'A' /* no ATTENTION messages */ #define SHM_INTRO 'I' /* intro messages */ #define SHM_COMPLETIONMENU 'c' /* completion menu messages */ -#define SHM_ALL "rmfixlnwaWtToOsAIc" /* all possible flags for 'shm' */ +#define SHM_RECORDING 'q' /* short recording message */ +#define SHM_ALL "rmfixlnwaWtToOsAIcq" /* all possible flags for 'shm' */ /* characters for p_go: */ #define GO_ASEL 'a' /* autoselect */ |