Add JumpToMatchingBrace action

This commit adds the JumpToMatchingBrace action which lets the cursor
jump to a matching brace if it is on one.

Closes #853
This commit is contained in:
Zachary Yedidia
2018-01-07 16:17:22 -05:00
parent 86c08bd747
commit fc2566a0de
7 changed files with 39 additions and 6 deletions

View File

@@ -218,6 +218,7 @@ RemoveMultiCursor
RemoveAllMultiCursors
SkipMultiCursor
UnbindKey
JumpToMatchingBrace
```
You can also bind some mouse actions (these must be bound to mouse buttons)

View File

@@ -182,6 +182,10 @@ Here are the options that you can set:
default value: `on`
* `matchbrace`: highlight matching braces for '()', '{}', '[]'
default value: `off`
* `syntax`: turns syntax on or off.
default value: `on`