Create Todo List Tab (#11430)

This commit is contained in:
Tommaso Sciortino
2025-10-17 21:10:57 -07:00
committed by GitHub
parent 2ef38065c7
commit cd76b0b22d
12 changed files with 338 additions and 120 deletions
+6
View File
@@ -51,6 +51,7 @@ describe('keyMatchers', () => {
key.ctrl && (key.name === 'x' || key.sequence === '\x18'),
[Command.PASTE_CLIPBOARD_IMAGE]: (key: Key) => key.ctrl && key.name === 'v',
[Command.SHOW_ERROR_DETAILS]: (key: Key) => key.ctrl && key.name === 'o',
[Command.SHOW_FULL_TODOS]: (key: Key) => key.ctrl && key.name === 't',
[Command.TOGGLE_IDE_CONTEXT_DETAIL]: (key: Key) =>
key.ctrl && key.name === 'g',
[Command.TOGGLE_MARKDOWN]: (key: Key) => key.meta && key.name === 'm',
@@ -214,6 +215,11 @@ describe('keyMatchers', () => {
positive: [createKey('o', { ctrl: true })],
negative: [createKey('o'), createKey('e', { ctrl: true })],
},
{
command: Command.SHOW_FULL_TODOS,
positive: [createKey('t', { ctrl: true })],
negative: [createKey('t'), createKey('e', { ctrl: true })],
},
{
command: Command.TOGGLE_IDE_CONTEXT_DETAIL,
positive: [createKey('g', { ctrl: true })],