Skip to content

Latest commit

 

History

History
87 lines (58 loc) · 3.66 KB

README.md

File metadata and controls

87 lines (58 loc) · 3.66 KB

Power Edit

Version Installs Downloads Rating Star Last Updated

CI PRs Welcome Github Open Issues LICENSE

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

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:

Before

After:

After

Auto Go to First Conflict

Auto Go to First Conflict

ref: microsoft/vscode#186091

Search in Git Changed Files

Search in Git Changed Files

ref: vscode search for a text only in git changes?

My extensions

Check all here: publishers/YuTengjing