https://github.com/tjx666/power-edit
a vscode extension enhance edit experience
https://github.com/tjx666/power-edit
vscode-extension
Last synced: about 2 months ago
JSON representation
a vscode extension enhance edit experience
- Host: GitHub
- URL: https://github.com/tjx666/power-edit
- Owner: tjx666
- License: other
- Created: 2023-03-25T13:45:03.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-04-25T09:20:51.000Z (about 1 year ago)
- Last Synced: 2025-03-13T01:37:09.972Z (about 2 months ago)
- Topics: vscode-extension
- Language: TypeScript
- Homepage: https://marketplace.visualstudio.com/items?itemName=YuTengjing.power-edit
- Size: 4.42 MB
- Stars: 8
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Power Edit
[](https://marketplace.visualstudio.com/items/YuTengjing.power-edit/changelog) [](https://marketplace.visualstudio.com/items?itemName=YuTengjing.power-edit) [](https://marketplace.visualstudio.com/items?itemName=YuTengjing.power-edit) [](https://marketplace.visualstudio.com/items?itemName=YuTengjing.power-edit&ssr=false#review-details) [](https://github.com/tjx666/power-edit)
 [](http://makeapullrequest.com) [](https://github.com/tjx666/power-edit/issues) [](https://github.com/996icu/996.ICU/blob/master/LICENSE)
## Features
> **NOTE**
> By default, this extension will not set any shortcuts.### Bracket Select
I just migrate code from [Bracket Select](https://github.com/jhasse/vscode-bracket-select) and make some code optimization.
recommend set following shortcut:
```jsonc
[
{
"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:
```jsonc
[
{
"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:
### Search in Git Changed Files

ref: [vscode search for a text only in git changes?](https://stackoverflow.com/questions/58875783/vscode-search-for-a-text-only-in-git-changes)
## My extensions
- [Open in External App](https://github.com/tjx666/open-in-external-app)
- [Neo File Utils](https://github.com/tjx666/vscode-neo-file-utils)
- [VSCode FE Helper](https://github.com/tjx666/vscode-fe-helper)
- [VSCode archive](https://github.com/tjx666/vscode-archive)
- [Modify File Warning](https://github.com/tjx666/modify-file-warning)
- [Adobe Extension Development Tools](https://github.com/tjx666/vscode-adobe-extension-devtools)
- [Scripting Listener](https://github.com/tjx666/scripting-listener)Check all here: [publishers/YuTengjing](https://marketplace.visualstudio.com/publishers/YuTengjing)