Tennie Henry
Tennie Henry
``` 2024-06-04 10:10:55.308 [debug] Handling key: V 2024-06-04 10:10:55.310 [debug] Status bar: -- VISUAL LINE -- 2024-06-04 10:10:56.467 [debug] Handling key: 2024-06-04 10:10:56.869 [debug] Handling key: 2024-06-04 10:10:57.475 [debug] Handling...
mac 好像只有这一个版本吧 https://github.com/fandesfyf/JamTools/releases/tag/0.12.200226beta 而且还是 21 年的
add test case for this https://github.com/VSCodeVim/Vim/blob/2cb95520f10f0b7fe439f4f3d97a9c7f214b3416/test/mode/modeInsert.test.ts#L712-L724 append after this ```ts test('handles snippet when filling out snippets with adjacent placeholder', async () => { await modeHandler.handleKeyEvent('i'); await vscode.commands.executeCommand('editor.action.insertSnippet', { snippet: '${3:foo}...
Repeat with this https://github.com/VSCodeVim/Vim/pull/7770
I merged this PR and roughly used it, and found two issues: 1. When 'vim. showMarksInGutter' is set to true, the initialization plugin prompts: mark. position. getLineBegin is not a...
I think it's probably caused by the code here: L998 https://github.com/VSCodeVim/Vim/blob/e3993621a1eda03678a2b116e893f3810d0d5f06/src/mode/modeHandler.ts#L990-L1002 The meaning of this code is that if the starting position is chosen as the end of the line,...
@J-Fields Can we use the built-in functionality of VSCode for tag manipulation? https://github.com/VSCodeVim/Vim/blob/e3993621a1eda03678a2b116e893f3810d0d5f06/src/actions/motion.ts#L2303-L2343 I will replace the code above with the code below ```js abstract class MoveTagMatch extends ExpandingSelection {...
https://github.com/VSCodeVim/Vim/pull/9127
You can customize the status bar color ```ts statusBarColors: IModeSpecificStrings = { normal: ['#005f5f', '#ffffff'], insert: ['#5f0000', '#ffffff'], visual: ['#5f00af', '#ffffff'], visualline: ['#005f87', '#ffffff'], visualblock: ['#86592d', '#ffffff'], replace: ['#000000', '#ffffff'],...
I can't reproduce it, and may need more config info