Description
VS Code and metaGo
both support jump to bracket:
- https://code.visualstudio.com/docs/editor/editingevolved#_bracket-matching
- https://github.com/metaseed/metaGo/tree/master#jump-to-bracket
metaGo
uses a variable to store bracketPairs
: https://github.com/metaseed/metaGo/blob/master/src/bracket-jumper.ts#L10
One thing I've always wanted in VS Code is a "jump to block" function that lets you jump to the start and end of a block based off of its indentation level. That seems a little complicated, so another thing I've wanted is a way to configure what characters/words can be jumped to.
There was a VS Code issue for this, but it was closed because it wasn't put on the roadmap: microsoft/vscode#32085
I created a new VS Code issue for this but don't know how it will be received by the VS Code team: microsoft/vscode#176694
So, my question to the metaGo
crew: is this something y'all would find useful/doable?