aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/ops.h
diff options
context:
space:
mode:
authorJosh Rahm <rahm@google.com>2022-08-22 10:02:32 -0600
committerJosh Rahm <rahm@google.com>2022-08-22 10:02:32 -0600
commitdeb60257f50dbcc72563df697236db48edbf914c (patch)
treea9c17c80d2dcf45fd809b4c95248f2e4d6a74e84 /src/nvim/ops.h
parent242f75745009b3a0a2108d98ce6c02b6e13aac3f (diff)
downloadrneovim-deb60257f50dbcc72563df697236db48edbf914c.tar.gz
rneovim-deb60257f50dbcc72563df697236db48edbf914c.tar.bz2
rneovim-deb60257f50dbcc72563df697236db48edbf914c.zip
feat(userregs): make the @" register call back into the userreg.
Before this changce, the userregs would not be repeated with @", now they can be. There is still the problem of repeating with a count does not call into the userreg, but that would be a lot of work to implement
Diffstat (limited to 'src/nvim/ops.h')
-rw-r--r--src/nvim/ops.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/ops.h b/src/nvim/ops.h
index a456d68003..69fc8572cf 100644
--- a/src/nvim/ops.h
+++ b/src/nvim/ops.h
@@ -90,6 +90,7 @@ typedef struct yankreg {
colnr_T y_width; ///< Register width (only valid for y_type == kBlockWise).
Timestamp timestamp; ///< Time when register was last modified.
dict_T *additional_data; ///< Additional data from ShaDa file.
+ int name;
} yankreg_T;
/// Modes for get_yank_register()