diff options
Diffstat (limited to 'src/nvim/normal_defs.h')
-rw-r--r-- | src/nvim/normal_defs.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/normal_defs.h b/src/nvim/normal_defs.h index 6ea6660a8b..0309f6bc80 100644 --- a/src/nvim/normal_defs.h +++ b/src/nvim/normal_defs.h @@ -16,7 +16,7 @@ typedef enum { } MotionType; /// Arguments for operators. -typedef struct oparg_S { +typedef struct { int op_type; ///< current pending operator type int regname; ///< register to use for the operator MotionType motion_type; ///< type of the current cursor motion @@ -42,7 +42,7 @@ typedef struct oparg_S { } oparg_T; /// Arguments for Normal mode commands. -typedef struct cmdarg_S { +typedef struct { oparg_T *oap; ///< Operator arguments int prechar; ///< prefix character (optional, always 'g') int cmdchar; ///< command character |