aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/ops.h
diff options
context:
space:
mode:
authorBjörn Linse <bjorn.linse@gmail.com>2016-05-01 13:43:39 +0200
committerBjörn Linse <bjorn.linse@gmail.com>2016-05-01 13:43:39 +0200
commit121987c5cce8417591fed64179c8f93d0055b43e (patch)
treec6ad056fbad0ae9242af84a084062b9906b9efe7 /src/nvim/ops.h
parent3dc8cdc1504edfd1ab44d9151954f859ab9befe2 (diff)
parent6cc15ccc3bd08edf06a41dd1c21b24b75a844ba2 (diff)
downloadrneovim-121987c5cce8417591fed64179c8f93d0055b43e.tar.gz
rneovim-121987c5cce8417591fed64179c8f93d0055b43e.tar.bz2
rneovim-121987c5cce8417591fed64179c8f93d0055b43e.zip
Merge pull request #4597 from bfredl/motion
convert MCHAR operator and register types to enum MotionType
Diffstat (limited to 'src/nvim/ops.h')
-rw-r--r--src/nvim/ops.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/nvim/ops.h b/src/nvim/ops.h
index f33e87572f..8c8a586957 100644
--- a/src/nvim/ops.h
+++ b/src/nvim/ops.h
@@ -78,10 +78,10 @@ enum GRegFlags {
/// Definition of one register
typedef struct yankreg {
- char_u **y_array; ///< Pointer to an array of line pointers.
- linenr_T y_size; ///< Number of lines in y_array.
- char_u y_type; ///< Register type: MLINE, MCHAR or MBLOCK.
- colnr_T y_width; ///< Register width (only valid for y_type == MBLOCK).
+ char_u **y_array; ///< Pointer to an array of line pointers.
+ linenr_T y_size; ///< Number of lines in y_array.
+ MotionType y_type; ///< Register type
+ 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.
} yankreg_T;