MohammadMD1383 / Actionable

Intellij plugin that adds many actions which are missing in the IDE!
https://mohammadmd1383.github.io/Actionable/
MIT License
15 stars 3 forks source link

remove matching `)/]/}` when deleting `(/[/{` #107

Open MohammadMD1383 opened 1 year ago

MohammadMD1383 commented 1 year ago

for example in this case:

const a = (|12 + 5) * 7;

after pressing Backspace, the matching parenthesis should also be removed:

const a = |12 + 5 * 7;

This can be either an action, or a configurable typing handler action...

MohammadMD1383 commented 1 year ago

also matching " and ' and `

MohammadMD1383 commented 1 year ago

the action could be activated when one of a pair is under selection:

(): selection | : caret

const some = (")|text"