Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions plugin/text_navigation/text_navigation.talon
Original file line number Diff line number Diff line change
Expand Up @@ -81,3 +81,14 @@ big word neck [<number_small>]:
user.navigation_by_name("SELECT", "RIGHT", "DEFAULT", "big", number_small or 1)
big word pre [<number_small>]:
user.navigation_by_name("SELECT", "LEFT", "DEFAULT", "big", number_small or 1)

# Select Using the Items Keyword
<number_small> items:
key(shift-down)
repeat(number_small - 1)
Copy link

Copilot AI Dec 14, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The spacing around the minus operator is inconsistent with the codebase style. Other uses of repeat in the repository use spaces around the minus operator, such as in core/modes/dictation_mode.talon. This should be changed to repeat(number_small - 1) for consistency.

Copilot uses AI. Check for mistakes.
left <number_small> items:
key(shift-left)
repeat(number_small - 1)
Copy link

Copilot AI Dec 14, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The spacing around the minus operator is inconsistent with the codebase style. Other uses of repeat in the repository use spaces around the minus operator, such as in core/modes/dictation_mode.talon. This should be changed to repeat(number_small - 1) for consistency.

Copilot uses AI. Check for mistakes.
right <number_small> items:
key(shift-right)
repeat(number_small - 1)
Copy link

Copilot AI Dec 14, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The spacing around the minus operator is inconsistent with the codebase style. Other uses of repeat in the repository use spaces around the minus operator, such as in core/modes/dictation_mode.talon. This should be changed to repeat(number_small - 1) for consistency.

Copilot uses AI. Check for mistakes.