Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Jun 7, 2024
1 parent 4cd2d5a commit 5e90dc8
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 13 deletions.
5 changes: 2 additions & 3 deletions apps/vscode/vscode.talon
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,6 @@ toggle mark: user.vscode("bookmarks.toggle")
go next mark: user.vscode("bookmarks.jumpToNext")
go last mark: user.vscode("bookmarks.jumpToPrevious")


close tabs way right: user.vscode("workbench.action.closeEditorsToTheRight")
close tabs way left: user.vscode("workbench.action.closeEditorsToTheLeft")

Expand Down Expand Up @@ -287,7 +286,7 @@ cell run: user.vscode("notebook.cell.execute")
install local: user.vscode("workbench.extensions.action.installVSIX")
preview markdown: user.vscode("markdown.showPreview")


# Deprecated commands
close other tabs: user.deprecate_command("2024-05-29", "close other tabs", "(tab close others|tab solo)")
close other tabs:
user.deprecate_command("2024-05-29", "close other tabs", "(tab close others|tab solo)")
close all tabs: user.deprecate_command("2024-05-29", "close all tabs", "tab close all")
18 changes: 9 additions & 9 deletions tags/splits/splits.talon
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ split [create] down: user.split_create_down()
split [create] up: user.split_create_up()
split [create] (vertically | vertical): user.split_create_vertically()
split [create] (horizontally | horizontal): user.split_create_horizontally()
split (new|create): user.split_create()
split (new | create): user.split_create()

## Duplicated splits
split clone right: user.split_clone_right()
Expand All @@ -19,7 +19,7 @@ split clone down: user.split_clone_down()
split clone up: user.split_clone_up()
split clone (vertically | vertical): user.split_clone_vertically()
split clone (horizontally | horizontal): user.split_clone_horizontally()
split clone (new|create): user.split_clone()
split clone (new | create): user.split_clone()

# Destruction
split close: user.split_close()
Expand All @@ -31,12 +31,12 @@ cross left: user.split_focus_left()
cross down: user.split_focus_down()
cross up: user.split_focus_up()
cross next: user.split_focus_next()
cross (last|previous): user.split_focus_previous()
cross (last | previous): user.split_focus_previous()
cross first: user.split_focus_first()
cross final: user.split_focus_final()
cross flip: user.split_focus_most_recent()
(go split|cross) <number>: user.split_focus_index(number)
(go split|cross) minus <number>: user.split_focus_negative_index(number)
(go split | cross) <number>: user.split_focus_index(number)
(go split | cross) minus <number>: user.split_focus_negative_index(number)

# Arrangement
split move right: user.split_move_right()
Expand All @@ -52,11 +52,11 @@ split axis: user.split_toggle_orientation()
split max: user.split_toggle_maximize()
split reset: user.split_layout_reset()
split expand: user.split_expand()
split (wider|expand width): user.split_expand_width()
split (taller|expand height): user.split_expand_height()
split (wider | expand width): user.split_expand_width()
split (taller | expand height): user.split_expand_height()
split shrink: user.split_shrink()
split (thinner|shrink width): user.split_shrink_width()
split (shorter|shrink height): user.split_shrink_height()
split (thinner | shrink width): user.split_shrink_width()
split (shorter | shrink height): user.split_shrink_height()
split set width <number>: user.split_set_width(number)
split set height <number>: user.split_set_height(number)

Expand Down
2 changes: 1 addition & 1 deletion tags/tabs/tabs.talon
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ tab duplicate: user.tab_clone()
# Destruction
tab close: user.tab_close_wrapper()
tab close all: user.tab_close_all()
tab (close others|solo): user.tab_close_others()
tab (close others | solo): user.tab_close_others()

# Navigation
[go] tab (last | previous): app.tab_previous()
Expand Down

0 comments on commit 5e90dc8

Please sign in to comment.