1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
|
ENUM_U16 {
CMD_UNKNOWN,
CMD_NOOP, // do nothing
// movement and selection commands
CMD_LEFT, // move cursor left
CMD_RIGHT, // move cursor right
CMD_UP, // move cursor up
CMD_DOWN, // move cursor down
CMD_SELECT_LEFT, // move cursor left, and select
CMD_SELECT_RIGHT,
CMD_SELECT_UP,
CMD_SELECT_DOWN,
CMD_LEFT_WORD, // move cursor left a word
CMD_RIGHT_WORD,
CMD_SELECT_LEFT_WORD,
CMD_SELECT_RIGHT_WORD,
CMD_START_OF_LINE, // move cursor to start of line
CMD_END_OF_LINE, // move cursor to end of line
CMD_SELECT_START_OF_LINE, // select to start of line
CMD_SELECT_END_OF_LINE, // select to end of line
CMD_START_OF_FILE, // move cursor to start of buffer
CMD_END_OF_FILE, // move cursor to end of buffer
CMD_SELECT_START_OF_FILE,
CMD_SELECT_END_OF_FILE,
CMD_SELECT_ALL, // select entire buffer
// insertion
CMD_TAB, // insert '\t'
CMD_BACKTAB,
CMD_NEWLINE, // insert '\n' + autoindent -- also used to submit line buffers
CMD_NEWLINE_BACK,
// scrolling
CMD_PAGE_UP, // move cursor up one page up (where one page is however tall the buffer is)
CMD_PAGE_DOWN,
// deletion
CMD_BACKSPACE,
CMD_DELETE,
CMD_BACKSPACE_WORD,
CMD_DELETE_WORD,
CMD_OPEN, // open a file
CMD_SAVE, // save current buffer
CMD_SAVE_AS,
CMD_SAVE_ALL, // save all open buffers with unsaved changes
CMD_NEW,
CMD_UNDO,
CMD_REDO,
CMD_QUIT,
CMD_COPY,
CMD_CUT,
CMD_PASTE,
CMD_FIND,
CMD_FIND_REPLACE,
CMD_TAB_CLOSE,
CMD_TAB_SWITCH, // argument = index of tab (starting at 0)
CMD_TAB_NEXT,
CMD_TAB_PREV,
CMD_TEXT_SIZE_INCREASE,
CMD_TEXT_SIZE_DECREASE,
CMD_VIEW_ONLY, // toggle view-only mode
CMD_BUILD,
CMD_BUILD_PREV_ERROR,
CMD_BUILD_NEXT_ERROR,
CMD_GOTO_DEFINITION, // "go to definition of..."
CMD_GOTO_LINE, // open "goto line..." menu
CMD_SPLIT_HORIZONTAL,
CMD_SPLIT_VERTICAL,
CMD_SPLIT_JOIN,
CMD_SPLIT_SWAP, // go to the other side of a split
CMD_ESCAPE, // by default this is the escape key. closes menus, etc.
CMD_COUNT
} ENUM_U16_END(Command);
typedef struct {
char const *name;
Command cmd;
} CommandName;
static CommandName const command_names[] = {
{"unknown", CMD_UNKNOWN},
{"noop", CMD_NOOP},
{"left", CMD_LEFT},
{"right", CMD_RIGHT},
{"up", CMD_UP},
{"down", CMD_DOWN},
{"select-left", CMD_SELECT_LEFT},
{"select-right", CMD_SELECT_RIGHT},
{"select-up", CMD_SELECT_UP},
{"select-down", CMD_SELECT_DOWN},
{"left-word", CMD_LEFT_WORD},
{"right-word", CMD_RIGHT_WORD},
{"select-left-word", CMD_SELECT_LEFT_WORD},
{"select-right-word", CMD_SELECT_RIGHT_WORD},
{"start-of-line", CMD_START_OF_LINE},
{"end-of-line", CMD_END_OF_LINE},
{"select-start-of-line", CMD_SELECT_START_OF_LINE},
{"select-end-of-line", CMD_SELECT_END_OF_LINE},
{"start-of-file", CMD_START_OF_FILE},
{"end-of-file", CMD_END_OF_FILE},
{"select-start-of-file", CMD_SELECT_START_OF_FILE},
{"select-end-of-file", CMD_SELECT_END_OF_FILE},
{"select-all", CMD_SELECT_ALL},
{"page-up", CMD_PAGE_UP},
{"page-down", CMD_PAGE_DOWN},
{"tab", CMD_TAB},
{"backtab", CMD_BACKTAB},
{"newline", CMD_NEWLINE},
{"newline-back", CMD_NEWLINE_BACK},
{"backspace", CMD_BACKSPACE},
{"delete", CMD_DELETE},
{"backspace-word", CMD_BACKSPACE_WORD},
{"delete-word", CMD_DELETE_WORD},
{"open", CMD_OPEN},
{"new", CMD_NEW},
{"save", CMD_SAVE},
{"save-as", CMD_SAVE_AS},
{"save-all", CMD_SAVE_ALL},
{"quit", CMD_QUIT},
{"undo", CMD_UNDO},
{"redo", CMD_REDO},
{"copy", CMD_COPY},
{"cut", CMD_CUT},
{"paste", CMD_PASTE},
{"find", CMD_FIND},
{"find-replace", CMD_FIND_REPLACE},
{"tab-close", CMD_TAB_CLOSE},
{"tab-switch", CMD_TAB_SWITCH},
{"tab-next", CMD_TAB_NEXT},
{"tab-prev", CMD_TAB_PREV},
{"increase-text-size", CMD_TEXT_SIZE_INCREASE},
{"decrease-text-size", CMD_TEXT_SIZE_DECREASE},
{"view-only", CMD_VIEW_ONLY},
{"build", CMD_BUILD},
{"build-prev-error", CMD_BUILD_PREV_ERROR},
{"build-next-error", CMD_BUILD_NEXT_ERROR},
{"goto-definition", CMD_GOTO_DEFINITION},
{"goto-line", CMD_GOTO_LINE},
{"split-horizontal", CMD_SPLIT_HORIZONTAL},
{"split-vertical", CMD_SPLIT_VERTICAL},
{"split-join", CMD_SPLIT_JOIN},
{"split-swap", CMD_SPLIT_SWAP},
{"escape", CMD_ESCAPE},
};
static_assert_if_possible(arr_count(command_names) == CMD_COUNT)
|