Skip to content

Commit

Permalink
Matching Brace Adjacency
Browse files Browse the repository at this point in the history
  • Loading branch information
pryrt committed Dec 28, 2024
1 parent 2e21253 commit ac7a652
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions content/docs/searching.md
Original file line number Diff line number Diff line change
Expand Up @@ -443,8 +443,8 @@ There are a few **Search**-menu commands that don't fit within other categories:
- `You can't go further than`: This is the end of the file, in the current Line/Offset units.
- **Go**: Moves the caret to the given location.
- **I'm going nowhere**: Exits the dialog without moving the caret. (This is the same as a **Cancel** action in most dialog boxes.)
- **Go to Matching Brace**: Allows parentheses and braces navigation. If the caret is on the opening parenthesis `(` or bracket `[` or brace `{`, then this command will move the caret to the matching closing-character `)` or `]` or `}`; similarly, if the caret is on the closing character, the command will move the caret to the matching opening-character. (The [**Style Configurator > Global Styles > Brace Highlight Style**](../preferences/#global-styles) will be used to highlight the opening and closing pairs of characters.)
- **Select All In-between {} [] or ()**: Will select all the text in between a matching pair of `{}` or `[]` or `()`; the selection will include the surrounding pair of braces, brackets, or parentheses.
- **Go to Matching Brace**: Allows parentheses and braces navigation. If the caret is adjacent to the opening parenthesis `(` or bracket `[` or brace `{`, then this command will move the caret to just before the matching closing-character `)` or `]` or `}`; similarly, if the caret is on the closing character, the command will move the caret to just before the matching opening-character. (The [**Style Configurator > Global Styles > Brace Highlight Style**](../preferences/#global-styles) will be used to highlight the opening and closing pairs of characters.)
- **Select All In-between {} [] or ()**: Will select all the text in between a matching pair of braces `{}` or brackets `[]` or parentheses `()` if the command is activated when the caret is adjacent to one of those characters; the resulting selection will include the surrounding pair of braces, brackets, or parentheses.

# Search Syntax

Expand Down

0 comments on commit ac7a652

Please sign in to comment.