0
0
mirror of https://github.com/vim/vim.git synced 2025-09-25 03:54:15 -04:00

patch 8.2.2189: cannot repeat a command that uses the small delete register

Problem:    Cannot repeat a command that uses the small delete register.
Solution:   Store the register name instead of the contents. (Christian
            Brabandt, closes #7527)
This commit is contained in:
Bram Moolenaar
2020-12-22 17:59:35 +01:00
parent cd45ed03bf
commit 032a2d050b
4 changed files with 22 additions and 2 deletions

View File

@@ -9,7 +9,7 @@
/*
* ops.c: implementation of various operators: op_shift, op_delete, op_tilde,
* op_change, op_yank, do_put, do_join
* op_change, op_yank, do_join
*/
#include "vim.h"