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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
use serde::{Deserialize, Serialize};
/// Context in which a keybinding is active
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, Serialize, Deserialize, ts_rs::TS)]
#[ts(export)]
pub enum KeyContext {
/// Global bindings that work in all contexts (checked first with highest priority)
Global,
/// Normal editing mode
Normal,
/// Prompt/minibuffer is active
Prompt,
/// Popup window is visible
Popup,
/// File explorer has focus
FileExplorer,
/// Menu bar is active
Menu,
/// Terminal has focus
Terminal,
/// Settings modal is active
Settings,
}
impl KeyContext {
/// Check if a context should allow input
pub fn allows_text_input(&self) -> bool {
matches!(self, Self::Normal | Self::Prompt)
}
/// Parse context from a "when" string
pub fn from_when_clause(when: &str) -> Option<Self> {
Some(match when.trim() {
"global" => Self::Global,
"prompt" => Self::Prompt,
"popup" => Self::Popup,
"fileExplorer" | "file_explorer" => Self::FileExplorer,
"normal" => Self::Normal,
"menu" => Self::Menu,
"terminal" => Self::Terminal,
"settings" => Self::Settings,
_ => return None,
})
}
/// Convert context to "when" clause string
pub fn to_when_clause(self) -> &'static str {
match self {
Self::Global => "global",
Self::Normal => "normal",
Self::Prompt => "prompt",
Self::Popup => "popup",
Self::FileExplorer => "fileExplorer",
Self::Menu => "menu",
Self::Terminal => "terminal",
Self::Settings => "settings",
}
}
}
/// High-level actions that can be performed in the editor
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize, ts_rs::TS)]
#[ts(export)]
pub enum Action {
// Character input
InsertChar(char),
InsertNewline,
InsertTab,
// Basic movement
MoveLeft,
MoveRight,
MoveUp,
MoveDown,
MoveWordLeft,
MoveWordRight,
MoveLineStart,
MoveLineEnd,
MovePageUp,
MovePageDown,
MoveDocumentStart,
MoveDocumentEnd,
// Selection movement (extends selection while moving)
SelectLeft,
SelectRight,
SelectUp,
SelectDown,
SelectWordLeft,
SelectWordRight,
SelectLineStart,
SelectLineEnd,
SelectDocumentStart,
SelectDocumentEnd,
SelectPageUp,
SelectPageDown,
SelectAll,
SelectWord,
SelectLine,
ExpandSelection,
// Block/rectangular selection (column-wise)
BlockSelectLeft,
BlockSelectRight,
BlockSelectUp,
BlockSelectDown,
// Editing
DeleteBackward,
DeleteForward,
DeleteWordBackward,
DeleteWordForward,
DeleteLine,
DeleteToLineEnd,
DeleteToLineStart,
TransposeChars,
OpenLine,
// View
Recenter,
// Selection
SetMark,
// Clipboard
Copy,
CopyWithTheme(String),
Cut,
Paste,
// Vi-style yank (copy without selection, then restore cursor)
YankWordForward,
YankWordBackward,
YankToLineEnd,
YankToLineStart,
// Multi-cursor
AddCursorAbove,
AddCursorBelow,
AddCursorNextMatch,
RemoveSecondaryCursors,
// File operations
Save,
SaveAs,
Open,
SwitchProject,
New,
Close,
CloseTab,
Quit,
Revert,
ToggleAutoRevert,
FormatBuffer,
// Navigation
GotoLine,
ScanLineIndex,
GoToMatchingBracket,
JumpToNextError,
JumpToPreviousError,
// Smart editing
SmartHome,
DedentSelection,
ToggleComment,
// Bookmarks
SetBookmark(char),
JumpToBookmark(char),
ClearBookmark(char),
ListBookmarks,
// Search options
ToggleSearchCaseSensitive,
ToggleSearchWholeWord,
ToggleSearchRegex,
ToggleSearchConfirmEach,
// Macros
StartMacroRecording,
StopMacroRecording,
PlayMacro(char),
ToggleMacroRecording(char),
ShowMacro(char),
ListMacros,
PromptRecordMacro,
PromptPlayMacro,
PlayLastMacro,
// Bookmarks (prompt-based)
PromptSetBookmark,
PromptJumpToBookmark,
// Undo/redo
Undo,
Redo,
// View
ScrollUp,
ScrollDown,
ShowHelp,
ShowKeyboardShortcuts,
ShowWarnings,
ShowLspStatus,
ClearWarnings,
CommandPalette,
ToggleLineWrap,
ToggleComposeMode,
SetComposeWidth,
SelectTheme,
SelectKeybindingMap,
SelectCursorStyle,
SelectLocale,
// Buffer/tab navigation
NextBuffer,
PrevBuffer,
SwitchToPreviousTab,
SwitchToTabByName,
// Tab scrolling
ScrollTabsLeft,
ScrollTabsRight,
// Position history navigation
NavigateBack,
NavigateForward,
// Split view operations
SplitHorizontal,
SplitVertical,
CloseSplit,
NextSplit,
PrevSplit,
IncreaseSplitSize,
DecreaseSplitSize,
ToggleMaximizeSplit,
// Prompt mode actions
PromptConfirm,
/// PromptConfirm with recorded text for macro playback
PromptConfirmWithText(String),
PromptCancel,
PromptBackspace,
PromptDelete,
PromptMoveLeft,
PromptMoveRight,
PromptMoveStart,
PromptMoveEnd,
PromptSelectPrev,
PromptSelectNext,
PromptPageUp,
PromptPageDown,
PromptAcceptSuggestion,
PromptMoveWordLeft,
PromptMoveWordRight,
// Advanced prompt editing (word operations, clipboard)
PromptDeleteWordForward,
PromptDeleteWordBackward,
PromptDeleteToLineEnd,
PromptCopy,
PromptCut,
PromptPaste,
// Prompt selection actions
PromptMoveLeftSelecting,
PromptMoveRightSelecting,
PromptMoveHomeSelecting,
PromptMoveEndSelecting,
PromptSelectWordLeft,
PromptSelectWordRight,
PromptSelectAll,
// File browser actions
FileBrowserToggleHidden,
// Popup mode actions
PopupSelectNext,
PopupSelectPrev,
PopupPageUp,
PopupPageDown,
PopupConfirm,
PopupCancel,
// File explorer operations
ToggleFileExplorer,
// Menu bar visibility
ToggleMenuBar,
// Tab bar visibility
ToggleTabBar,
FocusFileExplorer,
FocusEditor,
FileExplorerUp,
FileExplorerDown,
FileExplorerPageUp,
FileExplorerPageDown,
FileExplorerExpand,
FileExplorerCollapse,
FileExplorerOpen,
FileExplorerRefresh,
FileExplorerNewFile,
FileExplorerNewDirectory,
FileExplorerDelete,
FileExplorerRename,
FileExplorerToggleHidden,
FileExplorerToggleGitignored,
// LSP operations
LspCompletion,
LspGotoDefinition,
LspReferences,
LspRename,
LspHover,
LspSignatureHelp,
LspCodeActions,
LspRestart,
LspStop,
ToggleInlayHints,
ToggleMouseHover,
// View toggles
ToggleLineNumbers,
ToggleScrollSync,
ToggleMouseCapture,
ToggleDebugHighlights, // Debug mode: show highlight/overlay byte ranges
SetBackground,
SetBackgroundBlend,
// Buffer settings (per-buffer overrides)
SetTabSize,
SetLineEnding,
ToggleIndentationStyle,
ToggleTabIndicators,
ResetBufferSettings,
// Config operations
DumpConfig,
// Search and replace
Search,
FindInSelection,
FindNext,
FindPrevious,
FindSelectionNext, // Quick find next occurrence of selection (Ctrl+F3)
FindSelectionPrevious, // Quick find previous occurrence of selection (Ctrl+Shift+F3)
Replace,
QueryReplace, // Interactive replace (y/n/!/q for each match)
// Menu navigation
MenuActivate, // Open menu bar (Alt or F10)
MenuClose, // Close menu (Esc)
MenuLeft, // Navigate to previous menu
MenuRight, // Navigate to next menu
MenuUp, // Navigate to previous item in menu
MenuDown, // Navigate to next item in menu
MenuExecute, // Execute selected menu item (Enter)
MenuOpen(String), // Open a specific menu by name (e.g., "File", "Edit")
// Keybinding map switching
SwitchKeybindingMap(String), // Switch to a named keybinding map (e.g., "default", "emacs", "vscode")
// Plugin custom actions
PluginAction(String),
// Settings operations
OpenSettings, // Open the settings modal
CloseSettings, // Close the settings modal
SettingsSave, // Save settings changes
SettingsReset, // Reset current setting to default
SettingsToggleFocus, // Toggle focus between category and settings panels
SettingsActivate, // Activate/toggle the current setting
SettingsSearch, // Start search in settings
SettingsHelp, // Show settings help overlay
SettingsIncrement, // Increment number value or next dropdown option
SettingsDecrement, // Decrement number value or previous dropdown option
// Terminal operations
OpenTerminal, // Open a new terminal in the current split
CloseTerminal, // Close the current terminal
FocusTerminal, // Focus the terminal buffer (if viewing terminal, focus input)
TerminalEscape, // Escape from terminal mode back to editor
ToggleKeyboardCapture, // Toggle keyboard capture mode (all keys go to terminal)
TerminalPaste, // Paste clipboard contents into terminal as a single batch
// Shell command operations
ShellCommand, // Run shell command on buffer/selection, output to new buffer
ShellCommandReplace, // Run shell command on buffer/selection, replace content
// Case conversion
ToUpperCase, // Convert selection to uppercase
ToLowerCase, // Convert selection to lowercase
// Input calibration
CalibrateInput, // Open the input calibration wizard
// No-op
None,
}