]> granicus.if.org Git - vim/commitdiff
patch 7.4.925 v7.4.925
authorBram Moolenaar <Bram@vim.org>
Thu, 19 Nov 2015 16:56:13 +0000 (17:56 +0100)
committerBram Moolenaar <Bram@vim.org>
Thu, 19 Nov 2015 16:56:13 +0000 (17:56 +0100)
Problem:    User may yank or put using the register being recorded in.
Solution:   Add the recording register in the message. (Christian Brabandt,
            closes #470)

runtime/doc/options.txt
runtime/doc/repeat.txt
src/ops.c
src/option.h
src/screen.c
src/version.c

index 413353c4263bb4d43f0ec6f9f5ff525f7e11e746..9b8b5e6faa3b54648d0def0ebfcc8deff3b319d7 100644 (file)
@@ -6528,6 +6528,7 @@ A jump table for the options with a short description can be found at |Q_op|.
          c     don't give |ins-completion-menu| messages.  For example,
                "-- XXX completion (YYY)", "match 1 of 2", "The only match",
                "Pattern not found", "Back at original", etc.
+         q     use "recording" instead of "recording @a"
 
        This gives you the opportunity to avoid that a change between buffers
        requires you to hit <Enter>, but still gives as useful a message as
index af3a5182ae843e690c9e53b210202021efbd92fe..50431d352ad7397aa9899330a1cee684d0093247 100644 (file)
@@ -109,7 +109,13 @@ To abort this type CTRL-C twice.
 q{0-9a-zA-Z"}          Record typed characters into register {0-9a-zA-Z"}
                        (uppercase to append).  The 'q' command is disabled
                        while executing a register, and it doesn't work inside
-                       a mapping and |:normal|.  {Vi: no recording}
+                       a mapping and |:normal|.
+
+                       Note: If the register being used for recording is also
+                       used for |y| and |p| the result is most likely not
+                       what is expected, because the put will paste the
+                       recorded macro and the yank will overwrite the
+                       recorded macro. {Vi: no recording}
 
 q                      Stops recording.  (Implementation note: The 'q' that
                        stops recording is not stored in the register, unless
index 62d88a786a6be2abecad61c017f7596188c1f74b..d0995801285f3f9250e10104aa2a37fa286e3e64 100644 (file)
--- a/src/ops.c
+++ b/src/ops.c
@@ -1080,7 +1080,7 @@ do_record(c)
            retval = FAIL;
        else
        {
-           Recording = TRUE;
+           Recording = c;
            showmode();
            regname = c;
            retval = OK;
index f87283687a9592701bab9200c553d7649a2580f5..c6a3e604117638d04d020789e35f55237d13775e 100644 (file)
 #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 */
index de9e04df68989a0ce35cba9a9c1b0fb4f2a35162..d80ad6f96e69b3b6a89da5f4c879d27531ec545e 100644 (file)
@@ -163,6 +163,7 @@ static void redraw_block __ARGS((int row, int end, win_T *wp));
 static int win_do_lines __ARGS((win_T *wp, int row, int line_count, int mayclear, int del));
 static void win_rest_invalid __ARGS((win_T *wp));
 static void msg_pos_mode __ARGS((void));
+static void recording_mode __ARGS((int attr));
 #if defined(FEAT_WINDOWS)
 static void draw_tabline __ARGS((void));
 #endif
@@ -10163,7 +10164,7 @@ showmode()
 #endif
                )
        {
-           MSG_PUTS_ATTR(_("recording"), attr);
+           recording_mode(attr);
            need_clear = TRUE;
        }
 
@@ -10227,11 +10228,24 @@ unshowmode(force)
     {
        msg_pos_mode();
        if (Recording)
-           MSG_PUTS_ATTR(_("recording"), hl_attr(HLF_CM));
+           recording_mode(hl_attr(HLF_CM));
        msg_clr_eos();
     }
 }
 
+    static void
+recording_mode(attr)
+    int attr;
+{
+    MSG_PUTS_ATTR(_("recording"), attr);
+    if (!shortmess(SHM_RECORDING))
+    {
+       char_u s[4];
+       sprintf((char *)s, " @%c", Recording);
+       MSG_PUTS_ATTR(s, attr);
+    }
+}
+
 #if defined(FEAT_WINDOWS)
 /*
  * Draw the tab pages line at the top of the Vim window.
index e3742cc9ea459f172bac4adbffa62b5c8e66c6b6..5633841ed0a255ec76220168b171330e632e9077 100644 (file)
@@ -741,6 +741,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    925,
 /**/
     924,
 /**/