diff options
Diffstat (limited to 'src/nvim/ex_docmd.h')
-rw-r--r-- | src/nvim/ex_docmd.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/nvim/ex_docmd.h b/src/nvim/ex_docmd.h index 3781ba1a34..698153e8df 100644 --- a/src/nvim/ex_docmd.h +++ b/src/nvim/ex_docmd.h @@ -28,6 +28,8 @@ enum { // Whether a command index indicates a user command. #define IS_USER_CMDIDX(idx) ((int)(idx) < 0) +enum { DIALOG_MSG_SIZE = 1000, }; ///< buffer size for dialog_msg() + /// Structure used to save the current state. Used when executing Normal mode /// commands while in any other mode. typedef struct { |