Power Edit
April 21, 2024 ยท View on GitHub
Features
NOTE By default, this extension will not set any shortcuts.
Bracket Select
I just migrate code from Bracket Select and make some code optimization.
recommend set following shortcut:
[
{
"key": "ctrl+]",
"command": "power-edit.selectBracketContent",
"when": "editorTextFocus && editorLangId != 'markdown'",
},
{
"key": "ctrl+shift+]",
"command": "power-edit.selectBracket",
"when": "editorTextFocus && editorLangId != 'markdown'",
},
]
Select by Indent

recommend set following shortcut:
[
{
"key": "ctrl+shift+i",
"command": "power-edit.selectByIndent",
"when": "editorTextFocus && editorLangId != 'markdown'",
},
]
Auto keep Temp File
Like git error file, the temp file very easily disappear if not keep it.
Before:

After:

Auto Go to First Conflict

ref: https://github.com/microsoft/vscode/issues/186091
Search in Git Changed Files

ref: vscode search for a text only in git changes?
My extensions
- Open in External App
- Neo File Utils
- VSCode FE Helper
- VSCode archive
- Modify File Warning
- Adobe Extension Development Tools
- Scripting Listener
Check all here: publishers/YuTengjing