-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add setting for specifying characters to jump to
- Loading branch information
Showing
4 changed files
with
27 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,24 @@ | ||
A Visual Studio code extension that allows you to easily navigate between the nearest brackets and quotation marks in the source code. | ||
A Visual Studio code extension that allows you to easily navigate between the **nearest** brackets and quotation marks in the source code. | ||
|
||
This extension is highly inspired by [jump-brackets](https://github.com/syovchev/jump-brackets). | ||
The built-in VS Code command `editor.action.jumpToBracket` moves the cursor to the closest enclosing bracket when not on a bracket character. This extension adds the feature of moving the cursor to the *nearest* bracket. | ||
|
||
Main differences to the "jump-brackets" extension: | ||
The extension is highly inspired by [jump-brackets](https://github.com/syovchev/jump-brackets) extension. Main differences to the *jump-brackets*: | ||
|
||
- Heavily refactored | ||
- Fixed bugs | ||
- Removed selection feature | ||
|
||
## Usage | ||
## Commands | ||
|
||
- `hop-brackets.forward` Go to next bracket or quotes. | ||
- `hop-brackets.backwards` Go to previous bracket or quotes. | ||
|
||
ℹ️ No default keybindings are provided by this extension - you'll have to bind the commands yourself. | ||
|
||
## Settings | ||
|
||
- `hop-brackets.symbolsUsed` Specifies the characters to jump to. Default value: (){}[]'\" | ||
|
||
## Requirements | ||
|
||
VS Code version >= 1.75.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters