fresh-editor 0.1.90

A lightweight, fast terminal-based text editor with LSP support and TypeScript plugins
Documentation
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
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
{
  "inherits": "default",
  "comment": "macOS keymap - avoids Ctrl+Shift combos, ASCII control chars (Ctrl+J=LF), and international keyboard conflicts",
  "bindings": [
    {
      "comment": "Ctrl+R -> Redo (Ctrl+Y is Unix yank, Ctrl+Shift+Z produces caron)",
      "key": "r",
      "modifiers": ["ctrl"],
      "action": "redo",
      "args": {},
      "when": "normal"
    },
    {
      "comment": "Ctrl+U -> Delete to line start (Unix readline)",
      "key": "u",
      "modifiers": ["ctrl"],
      "action": "delete_to_line_start",
      "args": {},
      "when": "normal"
    },
    {
      "comment": "Ctrl+K -> Delete to line end (Unix readline)",
      "key": "k",
      "modifiers": ["ctrl"],
      "action": "delete_to_line_end",
      "args": {},
      "when": "normal"
    },
    {
      "comment": "Ctrl+Alt+K -> Delete line (Ctrl+Shift+K doesn't work on Mac)",
      "key": "k",
      "modifiers": ["ctrl", "alt"],
      "action": "delete_line",
      "args": {},
      "when": "normal"
    },
    {
      "comment": "Ctrl+L -> Go to line (frees Ctrl+G for find next)",
      "key": "l",
      "modifiers": ["ctrl"],
      "action": "goto_line",
      "args": {},
      "when": "normal"
    },
    {
      "comment": "Ctrl+T -> Go to symbol in file (Ctrl+Shift+O doesn't work on Mac)",
      "key": "t",
      "modifiers": ["ctrl"],
      "action": "command_palette",
      "args": {"filter": "@"},
      "when": "normal"
    },
    {
      "comment": "Ctrl+- -> Navigate back",
      "key": "-",
      "modifiers": ["ctrl"],
      "action": "navigate_back",
      "args": {},
      "when": "normal"
    },
    {
      "comment": "Ctrl+= -> Navigate forward (Ctrl+Shift+- doesn't work on Mac)",
      "key": "=",
      "modifiers": ["ctrl"],
      "action": "navigate_forward",
      "args": {},
      "when": "normal"
    },
    {
      "comment": "Ctrl+] -> Navigate forward (alternative)",
      "key": "]",
      "modifiers": ["ctrl"],
      "action": "navigate_forward",
      "args": {},
      "when": "normal"
    },
    {
      "comment": "Ctrl+D -> Add selection to next find match (Mac: Cmd+D)",
      "key": "d",
      "modifiers": ["ctrl"],
      "action": "add_cursor_next_match",
      "args": {},
      "when": "normal"
    },
    {
      "comment": "Ctrl+. -> Go to definition (replaces F12)",
      "key": ".",
      "modifiers": ["ctrl"],
      "action": "lsp_goto_definition",
      "args": {},
      "when": "normal"
    },
    {
      "comment": "Ctrl+, -> Find all references (Ctrl+Shift+. doesn't work on Mac)",
      "key": ",",
      "modifiers": ["ctrl"],
      "action": "lsp_references",
      "args": {},
      "when": "normal"
    },
    {
      "comment": "Ctrl+Alt+R -> Rename symbol (Ctrl+Shift+R doesn't work on Mac)",
      "key": "r",
      "modifiers": ["ctrl", "alt"],
      "action": "lsp_rename",
      "args": {},
      "when": "normal"
    },
    {
      "comment": "Ctrl+Alt+Up -> Add cursor above (Mac: Option+Cmd+Up)",
      "key": "Up",
      "modifiers": ["ctrl", "alt"],
      "action": "add_cursor_above",
      "args": {},
      "when": "normal"
    },
    {
      "comment": "Ctrl+Alt+Down -> Add cursor below (Mac: Option+Cmd+Down)",
      "key": "Down",
      "modifiers": ["ctrl", "alt"],
      "action": "add_cursor_below",
      "args": {},
      "when": "normal"
    },
    {
      "comment": "Ctrl+A -> Line start (Mac terminals send this for Home)",
      "key": "a",
      "modifiers": ["ctrl"],
      "action": "move_line_start",
      "args": {},
      "when": "normal"
    },
    {
      "comment": "Ctrl+E -> Line end (Mac terminals send this for End)",
      "key": "e",
      "modifiers": ["ctrl"],
      "action": "move_line_end",
      "args": {},
      "when": "normal"
    },
    {
      "comment": "Shift+Home -> Select to line start (for terminals that send Home correctly)",
      "key": "Home",
      "modifiers": ["shift"],
      "action": "select_line_start",
      "args": {},
      "when": "normal"
    },
    {
      "comment": "Shift+End -> Select to line end (for terminals that send End correctly)",
      "key": "End",
      "modifiers": ["shift"],
      "action": "select_line_end",
      "args": {},
      "when": "normal"
    },
    {
      "comment": "Alt+B -> Word left (standard Emacs/readline)",
      "key": "b",
      "modifiers": ["alt"],
      "action": "move_word_left",
      "args": {},
      "when": "normal"
    },
    {
      "comment": "Alt+F -> Word right (standard Emacs/readline)",
      "key": "f",
      "modifiers": ["alt"],
      "action": "move_word_right",
      "args": {},
      "when": "normal"
    },
    {
      "comment": "Alt+Left -> Word left (VS Code style)",
      "key": "Left",
      "modifiers": ["alt"],
      "action": "move_word_left",
      "args": {},
      "when": "normal"
    },
    {
      "key": "Right",
      "modifiers": ["alt"],
      "action": "move_word_right",
      "args": {},
      "when": "normal"
    },
    {
      "key": "Left",
      "modifiers": ["alt", "shift"],
      "action": "select_word_left",
      "args": {},
      "when": "normal"
    },
    {
      "key": "Right",
      "modifiers": ["alt", "shift"],
      "action": "select_word_right",
      "args": {},
      "when": "normal"
    },
    {
      "comment": "Ctrl+Arrow as fallback (works without terminal config)",
      "key": "Left",
      "modifiers": ["ctrl"],
      "action": "move_word_left",
      "args": {},
      "when": "normal"
    },
    {
      "key": "Right",
      "modifiers": ["ctrl"],
      "action": "move_word_right",
      "args": {},
      "when": "normal"
    },
    {
      "comment": "Ctrl+Shift+Arrow -> Select word (matches word movement)",
      "key": "Left",
      "modifiers": ["ctrl", "shift"],
      "action": "select_word_left",
      "args": {},
      "when": "normal"
    },
    {
      "key": "Right",
      "modifiers": ["ctrl", "shift"],
      "action": "select_word_right",
      "args": {},
      "when": "normal"
    },
    {
      "comment": "Ctrl+B -> Toggle sidebar/file explorer (Mac: Cmd+B)",
      "key": "b",
      "modifiers": ["ctrl"],
      "action": "toggle_file_explorer",
      "args": {},
      "when": "normal"
    },
    {
      "key": "b",
      "modifiers": ["ctrl"],
      "action": "focus_editor",
      "args": {},
      "when": "file_explorer"
    },
    {
      "comment": "Ctrl+' -> Next error (replaces F8)",
      "key": "'",
      "modifiers": ["ctrl"],
      "action": "jump_to_next_error",
      "args": {},
      "when": "normal"
    },
    {
      "comment": "Ctrl+; -> Previous error (Ctrl+Shift+' doesn't work on Mac)",
      "key": ";",
      "modifiers": ["ctrl"],
      "action": "jump_to_previous_error",
      "args": {},
      "when": "normal"
    },
    {
      "comment": "Ctrl+Alt+' -> Previous error (alternative)",
      "key": "'",
      "modifiers": ["ctrl", "alt"],
      "action": "jump_to_previous_error",
      "args": {},
      "when": "normal"
    },
    {
      "comment": "Ctrl+\\ -> Toggle keyboard capture (replaces F9)",
      "key": "\\",
      "modifiers": ["ctrl"],
      "action": "toggle_keyboard_capture",
      "args": {},
      "when": "terminal"
    },
    {
      "comment": "Ctrl+/ -> Toggle keyboard capture (German keyboard alternative - \\ is hard to type)",
      "key": "/",
      "modifiers": ["ctrl"],
      "action": "toggle_keyboard_capture",
      "args": {},
      "when": "terminal"
    },
    {
      "comment": "Ctrl+G -> Find next (F3 doesn't work; Ctrl+J is Line Feed in terminals)",
      "key": "g",
      "modifiers": ["ctrl"],
      "action": "find_next",
      "args": {},
      "when": "normal"
    },
    {
      "comment": "Ctrl+Alt+G -> Find previous (pairs with Ctrl+G)",
      "key": "g",
      "modifiers": ["ctrl", "alt"],
      "action": "find_previous",
      "args": {},
      "when": "normal"
    },
    {
      "key": "a",
      "modifiers": ["ctrl"],
      "action": "prompt_move_start",
      "args": {},
      "when": "prompt"
    },
    {
      "key": "e",
      "modifiers": ["ctrl"],
      "action": "prompt_move_end",
      "args": {},
      "when": "prompt"
    },
    {
      "key": "Left",
      "modifiers": ["alt"],
      "action": "prompt_move_word_left",
      "args": {},
      "when": "prompt"
    },
    {
      "key": "Right",
      "modifiers": ["alt"],
      "action": "prompt_move_word_right",
      "args": {},
      "when": "prompt"
    },
    {
      "key": "Left",
      "modifiers": ["ctrl"],
      "action": "prompt_move_word_left",
      "args": {},
      "when": "prompt"
    },
    {
      "key": "Right",
      "modifiers": ["ctrl"],
      "action": "prompt_move_word_right",
      "args": {},
      "when": "prompt"
    },
    {
      "comment": "Ctrl+U -> Delete to prompt start (Unix readline)",
      "key": "u",
      "modifiers": ["ctrl"],
      "action": "prompt_delete_to_start",
      "args": {},
      "when": "prompt"
    },
    {
      "comment": "Ctrl+K -> Delete to prompt end (Unix readline)",
      "key": "k",
      "modifiers": ["ctrl"],
      "action": "prompt_delete_to_end",
      "args": {},
      "when": "prompt"
    },
    {
      "comment": "Ctrl+W -> Delete word backward (Unix readline)",
      "key": "w",
      "modifiers": ["ctrl"],
      "action": "prompt_delete_word_left",
      "args": {},
      "when": "prompt"
    },
    {
      "comment": "Disable Alt+0-9 (Mac international keyboard conflict with special chars)",
      "key": "0",
      "modifiers": ["alt"],
      "action": "none",
      "args": {},
      "when": "normal"
    },
    {
      "key": "1",
      "modifiers": ["alt"],
      "action": "none",
      "args": {},
      "when": "normal"
    },
    {
      "key": "2",
      "modifiers": ["alt"],
      "action": "none",
      "args": {},
      "when": "normal"
    },
    {
      "key": "3",
      "modifiers": ["alt"],
      "action": "none",
      "args": {},
      "when": "normal"
    },
    {
      "key": "4",
      "modifiers": ["alt"],
      "action": "none",
      "args": {},
      "when": "normal"
    },
    {
      "key": "5",
      "modifiers": ["alt"],
      "action": "none",
      "args": {},
      "when": "normal"
    },
    {
      "key": "6",
      "modifiers": ["alt"],
      "action": "none",
      "args": {},
      "when": "normal"
    },
    {
      "key": "7",
      "modifiers": ["alt"],
      "action": "none",
      "args": {},
      "when": "normal"
    },
    {
      "key": "8",
      "modifiers": ["alt"],
      "action": "none",
      "args": {},
      "when": "normal"
    },
    {
      "key": "9",
      "modifiers": ["alt"],
      "action": "none",
      "args": {},
      "when": "normal"
    }
  ]
}