diff options
author | pommicket <pommicket@gmail.com> | 2023-03-23 13:55:50 -0400 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2023-03-23 13:55:50 -0400 |
commit | eb088ebd059ba00735723fb394d3bfe1b3530026 (patch) | |
tree | d7bfedce0a1f859ba89525afe1ae6a1afce427ae /command.h | |
parent | 63f54d13aa7233986f784ef857faef259a889ed6 (diff) |
get rid of ARG_STRING, start macros
Diffstat (limited to 'command.h')
-rw-r--r-- | command.h | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -4,9 +4,6 @@ #ifndef COMMAND_H_ #define COMMAND_H_ -/// `i | ARG_STRING` when used as an argument refers to `ted->strings[i]` -#define ARG_STRING 0x4000000000000000 - /// command enum /// /// more documentation in `ted.cfg`. @@ -147,6 +144,10 @@ typedef enum { /// by default this is the escape key. closes menus, etc. CMD_ESCAPE, + + CMD_MACRO_RECORD, + CMD_MACRO_STOP, + CMD_MACRO_EXECUTE, CMD_COUNT } Command; |