@dungle-scrubs/tallow 0.8.27 → 0.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (99) hide show
  1. package/README.md +42 -1
  2. package/dist/cli.js +7 -1
  3. package/dist/cli.js.map +1 -1
  4. package/dist/config.d.ts +1 -1
  5. package/dist/config.d.ts.map +1 -1
  6. package/dist/config.js +1 -1
  7. package/dist/config.js.map +1 -1
  8. package/dist/install.d.ts.map +1 -1
  9. package/dist/install.js +2 -9
  10. package/dist/install.js.map +1 -1
  11. package/dist/interactive-mode-patch.d.ts.map +1 -1
  12. package/dist/interactive-mode-patch.js +20 -9
  13. package/dist/interactive-mode-patch.js.map +1 -1
  14. package/dist/model-metadata-overrides.d.ts +2 -5
  15. package/dist/model-metadata-overrides.d.ts.map +1 -1
  16. package/dist/model-metadata-overrides.js +23 -12
  17. package/dist/model-metadata-overrides.js.map +1 -1
  18. package/dist/sdk.d.ts.map +1 -1
  19. package/dist/sdk.js +20 -9
  20. package/dist/sdk.js.map +1 -1
  21. package/dist/workspace-transition-interactive.d.ts.map +1 -1
  22. package/dist/workspace-transition-interactive.js +53 -3
  23. package/dist/workspace-transition-interactive.js.map +1 -1
  24. package/dist/workspace-transition.d.ts +2 -1
  25. package/dist/workspace-transition.d.ts.map +1 -1
  26. package/dist/workspace-transition.js +16 -4
  27. package/dist/workspace-transition.js.map +1 -1
  28. package/extensions/__integration__/cd-tool-guidelines.test.ts +46 -0
  29. package/extensions/__integration__/welcome-screen.test.ts +240 -0
  30. package/extensions/_icons/__tests__/icons.test.ts +0 -1
  31. package/extensions/_icons/index.ts +0 -2
  32. package/extensions/_shared/pid-registry.ts +5 -5
  33. package/extensions/background-task-tool/index.ts +1 -1
  34. package/extensions/cd-tool/index.ts +4 -1
  35. package/extensions/context-fork/__tests__/context-fork.test.ts +9 -0
  36. package/extensions/edit-tool-enhanced/index.ts +3 -1
  37. package/extensions/health/__tests__/diagnostics.test.ts +25 -0
  38. package/extensions/health/index.ts +62 -1
  39. package/extensions/loop/__tests__/loop.test.ts +365 -1
  40. package/extensions/loop/index.ts +213 -3
  41. package/extensions/prompt-suggestions/__tests__/autocomplete.test.ts +111 -3
  42. package/extensions/prompt-suggestions/autocomplete.ts +23 -5
  43. package/extensions/prompt-suggestions/index.ts +62 -3
  44. package/extensions/read-tool-enhanced/index.ts +5 -1
  45. package/extensions/render-stabilizer/__tests__/render-stabilizer.test.ts +42 -0
  46. package/extensions/render-stabilizer/extension.json +5 -0
  47. package/extensions/render-stabilizer/index.ts +66 -0
  48. package/extensions/session-memory/index.ts +1 -1
  49. package/extensions/session-namer/index.ts +1 -1
  50. package/extensions/subagent-tool/__tests__/auto-cheap-model.test.ts +66 -6
  51. package/extensions/subagent-tool/__tests__/model-router-explicit-resolution.test.ts +79 -5
  52. package/extensions/subagent-tool/__tests__/presentation-rendering.test.ts +4 -4
  53. package/extensions/subagent-tool/index.ts +4 -2
  54. package/extensions/subagent-tool/process.ts +26 -8
  55. package/extensions/teams-tool/sessions/spawn.ts +2 -2
  56. package/extensions/welcome-screen/__tests__/welcome-screen.test.ts +35 -0
  57. package/extensions/welcome-screen/extension.json +20 -0
  58. package/extensions/welcome-screen/index.ts +189 -0
  59. package/node_modules/@mariozechner/pi-tui/dist/index.d.ts +2 -2
  60. package/node_modules/@mariozechner/pi-tui/dist/index.d.ts.map +1 -1
  61. package/node_modules/@mariozechner/pi-tui/dist/index.js +2 -2
  62. package/node_modules/@mariozechner/pi-tui/dist/index.js.map +1 -1
  63. package/node_modules/@mariozechner/pi-tui/dist/keybindings.d.ts +309 -25
  64. package/node_modules/@mariozechner/pi-tui/dist/keybindings.d.ts.map +1 -1
  65. package/node_modules/@mariozechner/pi-tui/dist/keybindings.js +392 -72
  66. package/node_modules/@mariozechner/pi-tui/dist/keybindings.js.map +1 -1
  67. package/node_modules/@mariozechner/pi-tui/dist/keys.d.ts +30 -0
  68. package/node_modules/@mariozechner/pi-tui/dist/keys.d.ts.map +1 -1
  69. package/node_modules/@mariozechner/pi-tui/dist/keys.js +50 -6
  70. package/node_modules/@mariozechner/pi-tui/dist/keys.js.map +1 -1
  71. package/node_modules/@mariozechner/pi-tui/dist/terminal.d.ts +27 -0
  72. package/node_modules/@mariozechner/pi-tui/dist/terminal.d.ts.map +1 -1
  73. package/node_modules/@mariozechner/pi-tui/dist/terminal.js +59 -4
  74. package/node_modules/@mariozechner/pi-tui/dist/terminal.js.map +1 -1
  75. package/node_modules/@mariozechner/pi-tui/dist/tui.d.ts +56 -0
  76. package/node_modules/@mariozechner/pi-tui/dist/tui.d.ts.map +1 -1
  77. package/node_modules/@mariozechner/pi-tui/dist/tui.js +188 -5
  78. package/node_modules/@mariozechner/pi-tui/dist/tui.js.map +1 -1
  79. package/node_modules/@mariozechner/pi-tui/package.json +1 -1
  80. package/node_modules/@mariozechner/pi-tui/src/__tests__/mouse-events.test.ts +134 -0
  81. package/node_modules/@mariozechner/pi-tui/src/__tests__/tmux-compat.test.ts +204 -0
  82. package/node_modules/@mariozechner/pi-tui/src/__tests__/tui-diff-regression.test.ts +49 -0
  83. package/node_modules/@mariozechner/pi-tui/src/__tests__/tui-render-scheduling.test.ts +2 -0
  84. package/node_modules/@mariozechner/pi-tui/src/index.ts +11 -0
  85. package/node_modules/@mariozechner/pi-tui/src/keybindings.ts +478 -140
  86. package/node_modules/@mariozechner/pi-tui/src/keys.ts +84 -6
  87. package/node_modules/@mariozechner/pi-tui/src/terminal.ts +69 -4
  88. package/node_modules/@mariozechner/pi-tui/src/tui.ts +205 -5
  89. package/package.json +9 -9
  90. package/runtime/config.ts +7 -0
  91. package/runtime/model-metadata-overrides.ts +7 -0
  92. package/schemas/settings.schema.json +0 -5
  93. package/skills/tallow-expert/SKILL.md +6 -4
  94. package/extensions/plan-mode-tool/__tests__/e2e.mjs +0 -350
  95. package/extensions/plan-mode-tool/__tests__/index.test.ts +0 -213
  96. package/extensions/plan-mode-tool/__tests__/utils.test.ts +0 -381
  97. package/extensions/plan-mode-tool/extension.json +0 -22
  98. package/extensions/plan-mode-tool/index.ts +0 -583
  99. package/extensions/plan-mode-tool/utils.ts +0 -257
@@ -1,39 +1,323 @@
1
1
  import { type KeyId } from "./keys.js";
2
- /**
3
- * Editor actions that can be bound to keys.
4
- */
5
- export type EditorAction = "cursorUp" | "cursorDown" | "cursorLeft" | "cursorRight" | "cursorWordLeft" | "cursorWordRight" | "cursorLineStart" | "cursorLineEnd" | "jumpForward" | "jumpBackward" | "pageUp" | "pageDown" | "deleteCharBackward" | "deleteCharForward" | "deleteWordBackward" | "deleteWordForward" | "deleteToLineStart" | "deleteToLineEnd" | "newLine" | "submit" | "tab" | "selectUp" | "selectDown" | "selectPageUp" | "selectPageDown" | "selectConfirm" | "selectCancel" | "copy" | "yank" | "yankPop" | "undo" | "expandTools" | "toggleSessionPath" | "toggleSessionSort" | "renameSession" | "deleteSession" | "deleteSessionNoninvasive";
6
- export type { KeyId };
7
- /**
8
- * Editor keybindings configuration.
9
- */
10
- export type EditorKeybindingsConfig = {
11
- [K in EditorAction]?: KeyId | KeyId[];
2
+ /** Modern TUI keybinding identifiers. */
3
+ export interface Keybindings {
4
+ "tui.editor.cursorDown": true;
5
+ "tui.editor.cursorLeft": true;
6
+ "tui.editor.cursorLineEnd": true;
7
+ "tui.editor.cursorLineStart": true;
8
+ "tui.editor.cursorRight": true;
9
+ "tui.editor.cursorUp": true;
10
+ "tui.editor.cursorWordLeft": true;
11
+ "tui.editor.cursorWordRight": true;
12
+ "tui.editor.deleteCharBackward": true;
13
+ "tui.editor.deleteCharForward": true;
14
+ "tui.editor.deleteToLineEnd": true;
15
+ "tui.editor.deleteToLineStart": true;
16
+ "tui.editor.deleteWordBackward": true;
17
+ "tui.editor.deleteWordForward": true;
18
+ "tui.editor.jumpBackward": true;
19
+ "tui.editor.jumpForward": true;
20
+ "tui.editor.pageDown": true;
21
+ "tui.editor.pageUp": true;
22
+ "tui.editor.undo": true;
23
+ "tui.editor.yank": true;
24
+ "tui.editor.yankPop": true;
25
+ "tui.input.copy": true;
26
+ "tui.input.newLine": true;
27
+ "tui.input.submit": true;
28
+ "tui.input.tab": true;
29
+ "tui.select.cancel": true;
30
+ "tui.select.confirm": true;
31
+ "tui.select.down": true;
32
+ "tui.select.pageDown": true;
33
+ "tui.select.pageUp": true;
34
+ "tui.select.up": true;
35
+ }
36
+ declare const LEGACY_TO_MODERN_KEYBINDINGS: {
37
+ readonly copy: "tui.input.copy";
38
+ readonly cursorDown: "tui.editor.cursorDown";
39
+ readonly cursorLeft: "tui.editor.cursorLeft";
40
+ readonly cursorLineEnd: "tui.editor.cursorLineEnd";
41
+ readonly cursorLineStart: "tui.editor.cursorLineStart";
42
+ readonly cursorRight: "tui.editor.cursorRight";
43
+ readonly cursorUp: "tui.editor.cursorUp";
44
+ readonly cursorWordLeft: "tui.editor.cursorWordLeft";
45
+ readonly cursorWordRight: "tui.editor.cursorWordRight";
46
+ readonly deleteCharBackward: "tui.editor.deleteCharBackward";
47
+ readonly deleteCharForward: "tui.editor.deleteCharForward";
48
+ readonly deleteSession: "app.session.delete";
49
+ readonly deleteSessionNoninvasive: "app.session.deleteNoninvasive";
50
+ readonly deleteToLineEnd: "tui.editor.deleteToLineEnd";
51
+ readonly deleteToLineStart: "tui.editor.deleteToLineStart";
52
+ readonly deleteWordBackward: "tui.editor.deleteWordBackward";
53
+ readonly deleteWordForward: "tui.editor.deleteWordForward";
54
+ readonly expandTools: "app.tools.expand";
55
+ readonly jumpBackward: "tui.editor.jumpBackward";
56
+ readonly jumpForward: "tui.editor.jumpForward";
57
+ readonly newLine: "tui.input.newLine";
58
+ readonly pageDown: "tui.editor.pageDown";
59
+ readonly pageUp: "tui.editor.pageUp";
60
+ readonly renameSession: "app.session.rename";
61
+ readonly selectCancel: "tui.select.cancel";
62
+ readonly selectConfirm: "tui.select.confirm";
63
+ readonly selectDown: "tui.select.down";
64
+ readonly selectPageDown: "tui.select.pageDown";
65
+ readonly selectPageUp: "tui.select.pageUp";
66
+ readonly selectUp: "tui.select.up";
67
+ readonly submit: "tui.input.submit";
68
+ readonly tab: "tui.input.tab";
69
+ readonly toggleSessionPath: "app.session.togglePath";
70
+ readonly toggleSessionSort: "app.session.toggleSort";
71
+ readonly undo: "tui.editor.undo";
72
+ readonly yank: "tui.editor.yank";
73
+ readonly yankPop: "tui.editor.yankPop";
12
74
  };
75
+ /** Backward-compatible legacy editor actions. */
76
+ export type EditorAction = keyof typeof LEGACY_TO_MODERN_KEYBINDINGS;
77
+ /** Modern keybinding identifier. */
78
+ export type Keybinding = keyof Keybindings | EditorAction;
79
+ /** Single keybinding definition with defaults and UI help text. */
80
+ export interface KeybindingDefinition {
81
+ readonly defaultKeys: KeyId | readonly KeyId[];
82
+ readonly description: string;
83
+ }
84
+ /** User-provided keybinding overrides. */
85
+ export type KeybindingsConfig = Partial<Record<Keybinding, KeyId | readonly KeyId[]>>;
86
+ /** Backward-compatible legacy editor config. */
87
+ export type EditorKeybindingsConfig = Partial<Record<EditorAction, KeyId | readonly KeyId[]>>;
88
+ /** Default legacy editor keybindings preserved for compatibility. */
89
+ export declare const DEFAULT_EDITOR_KEYBINDINGS: Required<Record<EditorAction, KeyId | readonly KeyId[]>>;
90
+ /** Modern TUI keybinding definitions consumed by pi-coding-agent 0.61+. */
91
+ export declare const TUI_KEYBINDINGS: {
92
+ readonly "tui.editor.cursorDown": {
93
+ readonly defaultKeys: KeyId | readonly KeyId[];
94
+ readonly description: "Move cursor down";
95
+ };
96
+ readonly "tui.editor.cursorLeft": {
97
+ readonly defaultKeys: KeyId | readonly KeyId[];
98
+ readonly description: "Move cursor left";
99
+ };
100
+ readonly "tui.editor.cursorLineEnd": {
101
+ readonly defaultKeys: KeyId | readonly KeyId[];
102
+ readonly description: "Move to line end";
103
+ };
104
+ readonly "tui.editor.cursorLineStart": {
105
+ readonly defaultKeys: KeyId | readonly KeyId[];
106
+ readonly description: "Move to line start";
107
+ };
108
+ readonly "tui.editor.cursorRight": {
109
+ readonly defaultKeys: KeyId | readonly KeyId[];
110
+ readonly description: "Move cursor right";
111
+ };
112
+ readonly "tui.editor.cursorUp": {
113
+ readonly defaultKeys: KeyId | readonly KeyId[];
114
+ readonly description: "Move cursor up";
115
+ };
116
+ readonly "tui.editor.cursorWordLeft": {
117
+ readonly defaultKeys: KeyId | readonly KeyId[];
118
+ readonly description: "Move cursor word left";
119
+ };
120
+ readonly "tui.editor.cursorWordRight": {
121
+ readonly defaultKeys: KeyId | readonly KeyId[];
122
+ readonly description: "Move cursor word right";
123
+ };
124
+ readonly "tui.editor.deleteCharBackward": {
125
+ readonly defaultKeys: KeyId | readonly KeyId[];
126
+ readonly description: "Delete character backward";
127
+ };
128
+ readonly "tui.editor.deleteCharForward": {
129
+ readonly defaultKeys: KeyId | readonly KeyId[];
130
+ readonly description: "Delete character forward";
131
+ };
132
+ readonly "tui.editor.deleteToLineEnd": {
133
+ readonly defaultKeys: KeyId | readonly KeyId[];
134
+ readonly description: "Delete to line end";
135
+ };
136
+ readonly "tui.editor.deleteToLineStart": {
137
+ readonly defaultKeys: KeyId | readonly KeyId[];
138
+ readonly description: "Delete to line start";
139
+ };
140
+ readonly "tui.editor.deleteWordBackward": {
141
+ readonly defaultKeys: KeyId | readonly KeyId[];
142
+ readonly description: "Delete word backward";
143
+ };
144
+ readonly "tui.editor.deleteWordForward": {
145
+ readonly defaultKeys: KeyId | readonly KeyId[];
146
+ readonly description: "Delete word forward";
147
+ };
148
+ readonly "tui.editor.jumpBackward": {
149
+ readonly defaultKeys: KeyId | readonly KeyId[];
150
+ readonly description: "Jump backward to character";
151
+ };
152
+ readonly "tui.editor.jumpForward": {
153
+ readonly defaultKeys: KeyId | readonly KeyId[];
154
+ readonly description: "Jump forward to character";
155
+ };
156
+ readonly "tui.editor.pageDown": {
157
+ readonly defaultKeys: KeyId | readonly KeyId[];
158
+ readonly description: "Page down";
159
+ };
160
+ readonly "tui.editor.pageUp": {
161
+ readonly defaultKeys: KeyId | readonly KeyId[];
162
+ readonly description: "Page up";
163
+ };
164
+ readonly "tui.editor.undo": {
165
+ readonly defaultKeys: KeyId | readonly KeyId[];
166
+ readonly description: "Undo";
167
+ };
168
+ readonly "tui.editor.yank": {
169
+ readonly defaultKeys: KeyId | readonly KeyId[];
170
+ readonly description: "Yank";
171
+ };
172
+ readonly "tui.editor.yankPop": {
173
+ readonly defaultKeys: KeyId | readonly KeyId[];
174
+ readonly description: "Yank pop";
175
+ };
176
+ readonly "tui.input.copy": {
177
+ readonly defaultKeys: KeyId | readonly KeyId[];
178
+ readonly description: "Copy selection";
179
+ };
180
+ readonly "tui.input.newLine": {
181
+ readonly defaultKeys: KeyId | readonly KeyId[];
182
+ readonly description: "Insert newline";
183
+ };
184
+ readonly "tui.input.submit": {
185
+ readonly defaultKeys: KeyId | readonly KeyId[];
186
+ readonly description: "Submit input";
187
+ };
188
+ readonly "tui.input.tab": {
189
+ readonly defaultKeys: KeyId | readonly KeyId[];
190
+ readonly description: "Tab / autocomplete";
191
+ };
192
+ readonly "tui.select.cancel": {
193
+ readonly defaultKeys: KeyId | readonly KeyId[];
194
+ readonly description: "Cancel selection";
195
+ };
196
+ readonly "tui.select.confirm": {
197
+ readonly defaultKeys: KeyId | readonly KeyId[];
198
+ readonly description: "Confirm selection";
199
+ };
200
+ readonly "tui.select.down": {
201
+ readonly defaultKeys: KeyId | readonly KeyId[];
202
+ readonly description: "Move selection down";
203
+ };
204
+ readonly "tui.select.pageDown": {
205
+ readonly defaultKeys: KeyId | readonly KeyId[];
206
+ readonly description: "Selection page down";
207
+ };
208
+ readonly "tui.select.pageUp": {
209
+ readonly defaultKeys: KeyId | readonly KeyId[];
210
+ readonly description: "Selection page up";
211
+ };
212
+ readonly "tui.select.up": {
213
+ readonly defaultKeys: KeyId | readonly KeyId[];
214
+ readonly description: "Move selection up";
215
+ };
216
+ };
217
+ type ModernKeybinding = keyof Keybindings;
218
+ type NormalizedKeybindingsConfig = Partial<Record<ModernKeybinding, readonly KeyId[]>>;
13
219
  /**
14
- * Default editor keybindings.
15
- */
16
- export declare const DEFAULT_EDITOR_KEYBINDINGS: Required<EditorKeybindingsConfig>;
17
- /**
18
- * Manages keybindings for the editor.
220
+ * Keybinding manager compatible with pi-tui 0.61+ while preserving legacy names.
19
221
  */
20
- export declare class EditorKeybindingsManager {
21
- private actionToKeys;
22
- constructor(config?: EditorKeybindingsConfig);
23
- private buildMaps;
222
+ export declare class KeybindingsManager {
223
+ private readonly definitions;
224
+ private readonly resolvedKeys;
225
+ private userBindings;
226
+ /**
227
+ * Create a keybindings manager.
228
+ *
229
+ * @param {Readonly<Record<ModernKeybinding, KeybindingDefinition>>} definitions - Keybinding definitions.
230
+ * @param {KeybindingsConfig} userBindings - Optional user overrides.
231
+ */
232
+ constructor(definitions?: Readonly<Record<ModernKeybinding, KeybindingDefinition>>, userBindings?: KeybindingsConfig);
233
+ /**
234
+ * Rebuild resolved bindings from defaults plus user overrides.
235
+ *
236
+ * @returns {void} Nothing.
237
+ */
238
+ private rebuild;
239
+ /**
240
+ * Resolve a keybinding name to its lookup key in resolvedKeys.
241
+ * Checks the TUI namespace and legacy names first, then falls back to
242
+ * a direct lookup in definitions/resolvedKeys for consumer-defined
243
+ * keybindings (e.g. app.* keybindings registered by pi-coding-agent).
244
+ *
245
+ * @param {string} keybinding - Keybinding identifier.
246
+ * @returns {ModernKeybinding | null} Resolved key or null when unknown.
247
+ */
248
+ private resolveKeybinding;
24
249
  /**
25
- * Check if input matches a specific action.
250
+ * Check whether input matches a keybinding.
251
+ *
252
+ * @param {string} data - Raw terminal input.
253
+ * @param {Keybinding | string} keybinding - Keybinding identifier.
254
+ * @returns {boolean} True when the input matches.
26
255
  */
27
- matches(data: string, action: EditorAction): boolean;
256
+ matches(data: string, keybinding: Keybinding | string): boolean;
28
257
  /**
29
- * Get keys bound to an action.
258
+ * Get the keys currently bound to a keybinding.
259
+ *
260
+ * @param {Keybinding | string} keybinding - Keybinding identifier.
261
+ * @returns {KeyId[]} Resolved key list.
30
262
  */
31
- getKeys(action: EditorAction): KeyId[];
263
+ getKeys(keybinding: Keybinding | string): KeyId[];
32
264
  /**
33
- * Update configuration.
265
+ * Replace user bindings and rebuild the resolved map.
266
+ *
267
+ * @param {KeybindingsConfig} userBindings - New user bindings.
268
+ * @returns {void} Nothing.
34
269
  */
35
- setConfig(config: EditorKeybindingsConfig): void;
270
+ setUserBindings(userBindings: KeybindingsConfig): void;
271
+ /**
272
+ * Normalize user bindings using both TUI namespace and consumer definitions.
273
+ * This extends the module-level normalizeUserBindings to also accept
274
+ * keybinding names that exist in this.definitions (e.g. app.*).
275
+ *
276
+ * @param {KeybindingsConfig} userBindings - Raw user bindings.
277
+ * @returns {NormalizedKeybindingsConfig} Normalized modern binding map.
278
+ */
279
+ private normalizeUserBindingsWithDefinitions;
280
+ /**
281
+ * Get the fully resolved modern keybinding config.
282
+ *
283
+ * @returns {NormalizedKeybindingsConfig} Resolved keybinding config.
284
+ */
285
+ getResolvedBindings(): NormalizedKeybindingsConfig;
286
+ }
287
+ /** Backward-compatible alias for legacy callers. */
288
+ export declare class EditorKeybindingsManager extends KeybindingsManager {
289
+ /**
290
+ * Create a legacy editor keybindings manager.
291
+ *
292
+ * @param {EditorKeybindingsConfig} config - Legacy editor keybinding overrides.
293
+ */
294
+ constructor(config?: EditorKeybindingsConfig);
36
295
  }
296
+ /**
297
+ * Get the shared keybindings manager.
298
+ *
299
+ * @returns {KeybindingsManager} Shared keybindings manager.
300
+ */
301
+ export declare function getKeybindings(): KeybindingsManager;
302
+ /**
303
+ * Replace the shared keybindings manager.
304
+ *
305
+ * @param {KeybindingsManager} manager - Keybindings manager to install.
306
+ * @returns {void} Nothing.
307
+ */
308
+ export declare function setKeybindings(manager: KeybindingsManager): void;
309
+ /**
310
+ * Get the shared legacy editor keybindings manager.
311
+ *
312
+ * @returns {EditorKeybindingsManager} Shared legacy-compatible manager.
313
+ */
37
314
  export declare function getEditorKeybindings(): EditorKeybindingsManager;
315
+ /**
316
+ * Replace the shared legacy editor keybindings manager.
317
+ *
318
+ * @param {EditorKeybindingsManager} manager - Legacy keybindings manager.
319
+ * @returns {void} Nothing.
320
+ */
38
321
  export declare function setEditorKeybindings(manager: EditorKeybindingsManager): void;
322
+ export {};
39
323
  //# sourceMappingURL=keybindings.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"keybindings.d.ts","sourceRoot":"","sources":["../src/keybindings.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,KAAK,EAAc,MAAM,WAAW,CAAC;AAEnD;;GAEG;AACH,MAAM,MAAM,YAAY,GAErB,UAAU,GACV,YAAY,GACZ,YAAY,GACZ,aAAa,GACb,gBAAgB,GAChB,iBAAiB,GACjB,iBAAiB,GACjB,eAAe,GACf,aAAa,GACb,cAAc,GACd,QAAQ,GACR,UAAU,GAEV,oBAAoB,GACpB,mBAAmB,GACnB,oBAAoB,GACpB,mBAAmB,GACnB,mBAAmB,GACnB,iBAAiB,GAEjB,SAAS,GACT,QAAQ,GACR,KAAK,GAEL,UAAU,GACV,YAAY,GACZ,cAAc,GACd,gBAAgB,GAChB,eAAe,GACf,cAAc,GAEd,MAAM,GAEN,MAAM,GACN,SAAS,GAET,MAAM,GAEN,aAAa,GAEb,mBAAmB,GACnB,mBAAmB,GACnB,eAAe,GACf,eAAe,GACf,0BAA0B,CAAC;AAG9B,YAAY,EAAE,KAAK,EAAE,CAAC;AAEtB;;GAEG;AACH,MAAM,MAAM,uBAAuB,GAAG;KACpC,CAAC,IAAI,YAAY,CAAC,CAAC,EAAE,KAAK,GAAG,KAAK,EAAE;CACrC,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,0BAA0B,EAAE,QAAQ,CAAC,uBAAuB,CA+CxE,CAAC;AAEF;;GAEG;AACH,qBAAa,wBAAwB;IACpC,OAAO,CAAC,YAAY,CAA6B;gBAErC,MAAM,GAAE,uBAA4B;IAKhD,OAAO,CAAC,SAAS;IAiBjB;;OAEG;IACH,OAAO,CAAC,IAAI,EAAE,MAAM,EAAE,MAAM,EAAE,YAAY,GAAG,OAAO;IASpD;;OAEG;IACH,OAAO,CAAC,MAAM,EAAE,YAAY,GAAG,KAAK,EAAE;IAItC;;OAEG;IACH,SAAS,CAAC,MAAM,EAAE,uBAAuB,GAAG,IAAI;CAGhD;AAKD,wBAAgB,oBAAoB,IAAI,wBAAwB,CAK/D;AAED,wBAAgB,oBAAoB,CAAC,OAAO,EAAE,wBAAwB,GAAG,IAAI,CAE5E"}
1
+ {"version":3,"file":"keybindings.d.ts","sourceRoot":"","sources":["../src/keybindings.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,KAAK,EAAc,MAAM,WAAW,CAAC;AAEnD,yCAAyC;AACzC,MAAM,WAAW,WAAW;IAC3B,uBAAuB,EAAE,IAAI,CAAC;IAC9B,uBAAuB,EAAE,IAAI,CAAC;IAC9B,0BAA0B,EAAE,IAAI,CAAC;IACjC,4BAA4B,EAAE,IAAI,CAAC;IACnC,wBAAwB,EAAE,IAAI,CAAC;IAC/B,qBAAqB,EAAE,IAAI,CAAC;IAC5B,2BAA2B,EAAE,IAAI,CAAC;IAClC,4BAA4B,EAAE,IAAI,CAAC;IACnC,+BAA+B,EAAE,IAAI,CAAC;IACtC,8BAA8B,EAAE,IAAI,CAAC;IACrC,4BAA4B,EAAE,IAAI,CAAC;IACnC,8BAA8B,EAAE,IAAI,CAAC;IACrC,+BAA+B,EAAE,IAAI,CAAC;IACtC,8BAA8B,EAAE,IAAI,CAAC;IACrC,yBAAyB,EAAE,IAAI,CAAC;IAChC,wBAAwB,EAAE,IAAI,CAAC;IAC/B,qBAAqB,EAAE,IAAI,CAAC;IAC5B,mBAAmB,EAAE,IAAI,CAAC;IAC1B,iBAAiB,EAAE,IAAI,CAAC;IACxB,iBAAiB,EAAE,IAAI,CAAC;IACxB,oBAAoB,EAAE,IAAI,CAAC;IAC3B,gBAAgB,EAAE,IAAI,CAAC;IACvB,mBAAmB,EAAE,IAAI,CAAC;IAC1B,kBAAkB,EAAE,IAAI,CAAC;IACzB,eAAe,EAAE,IAAI,CAAC;IACtB,mBAAmB,EAAE,IAAI,CAAC;IAC1B,oBAAoB,EAAE,IAAI,CAAC;IAC3B,iBAAiB,EAAE,IAAI,CAAC;IACxB,qBAAqB,EAAE,IAAI,CAAC;IAC5B,mBAAmB,EAAE,IAAI,CAAC;IAC1B,eAAe,EAAE,IAAI,CAAC;CACtB;AAED,QAAA,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAsCxB,CAAC;AAEX,iDAAiD;AACjD,MAAM,MAAM,YAAY,GAAG,MAAM,OAAO,4BAA4B,CAAC;AAErE,oCAAoC;AACpC,MAAM,MAAM,UAAU,GAAG,MAAM,WAAW,GAAG,YAAY,CAAC;AAE1D,mEAAmE;AACnE,MAAM,WAAW,oBAAoB;IACpC,QAAQ,CAAC,WAAW,EAAE,KAAK,GAAG,SAAS,KAAK,EAAE,CAAC;IAC/C,QAAQ,CAAC,WAAW,EAAE,MAAM,CAAC;CAC7B;AAED,0CAA0C;AAC1C,MAAM,MAAM,iBAAiB,GAAG,OAAO,CAAC,MAAM,CAAC,UAAU,EAAE,KAAK,GAAG,SAAS,KAAK,EAAE,CAAC,CAAC,CAAC;AAEtF,gDAAgD;AAChD,MAAM,MAAM,uBAAuB,GAAG,OAAO,CAAC,MAAM,CAAC,YAAY,EAAE,KAAK,GAAG,SAAS,KAAK,EAAE,CAAC,CAAC,CAAC;AAE9F,qEAAqE;AACrE,eAAO,MAAM,0BAA0B,EAAE,QAAQ,CAAC,MAAM,CAAC,YAAY,EAAE,KAAK,GAAG,SAAS,KAAK,EAAE,CAAC,CAuC9F,CAAC;AAEH,2EAA2E;AAC3E,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA6HwC,CAAC;AAErE,KAAK,gBAAgB,GAAG,MAAM,WAAW,CAAC;AAE1C,KAAK,2BAA2B,GAAG,OAAO,CAAC,MAAM,CAAC,gBAAgB,EAAE,SAAS,KAAK,EAAE,CAAC,CAAC,CAAC;AA8DvF;;GAEG;AACH,qBAAa,kBAAkB;IAC9B,OAAO,CAAC,QAAQ,CAAC,WAAW,CAA2D;IACvF,OAAO,CAAC,QAAQ,CAAC,YAAY,CAAwC;IACrE,OAAO,CAAC,YAAY,CAA8B;IAElD;;;;;OAKG;gBAEF,WAAW,GAAE,QAAQ,CAAC,MAAM,CAAC,gBAAgB,EAAE,oBAAoB,CAAC,CAAmB,EACvF,YAAY,GAAE,iBAAsB;IAOrC;;;;OAIG;IACH,OAAO,CAAC,OAAO;IAWf;;;;;;;;OAQG;IACH,OAAO,CAAC,iBAAiB;IAWzB;;;;;;OAMG;IACH,OAAO,CAAC,IAAI,EAAE,MAAM,EAAE,UAAU,EAAE,UAAU,GAAG,MAAM,GAAG,OAAO;IAU/D;;;;;OAKG;IACH,OAAO,CAAC,UAAU,EAAE,UAAU,GAAG,MAAM,GAAG,KAAK,EAAE;IAKjD;;;;;OAKG;IACH,eAAe,CAAC,YAAY,EAAE,iBAAiB,GAAG,IAAI;IAKtD;;;;;;;OAOG;IACH,OAAO,CAAC,oCAAoC;IAkB5C;;;;OAIG;IACH,mBAAmB,IAAI,2BAA2B;CAOlD;AAED,oDAAoD;AACpD,qBAAa,wBAAyB,SAAQ,kBAAkB;IAC/D;;;;OAIG;gBACS,MAAM,GAAE,uBAA4B;CAGhD;AAID;;;;GAIG;AACH,wBAAgB,cAAc,IAAI,kBAAkB,CAKnD;AAED;;;;;GAKG;AACH,wBAAgB,cAAc,CAAC,OAAO,EAAE,kBAAkB,GAAG,IAAI,CAEhE;AAED;;;;GAIG;AACH,wBAAgB,oBAAoB,IAAI,wBAAwB,CAE/D;AAED;;;;;GAKG;AACH,wBAAgB,oBAAoB,CAAC,OAAO,EAAE,wBAAwB,GAAG,IAAI,CAE5E"}