From 5e90dc8c0f5043bea6d4a311aecb2510ca449857 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Fri, 7 Jun 2024 07:09:16 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- apps/vscode/vscode.talon | 5 ++--- tags/splits/splits.talon | 18 +++++++++--------- tags/tabs/tabs.talon | 2 +- 3 files changed, 12 insertions(+), 13 deletions(-) diff --git a/apps/vscode/vscode.talon b/apps/vscode/vscode.talon index e3a128114a..564585147f 100644 --- a/apps/vscode/vscode.talon +++ b/apps/vscode/vscode.talon @@ -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") @@ -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") diff --git a/tags/splits/splits.talon b/tags/splits/splits.talon index 87f97e4df3..1978e9e052 100644 --- a/tags/splits/splits.talon +++ b/tags/splits/splits.talon @@ -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() @@ -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() @@ -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) : user.split_focus_index(number) -(go split|cross) minus : user.split_focus_negative_index(number) +(go split | cross) : user.split_focus_index(number) +(go split | cross) minus : user.split_focus_negative_index(number) # Arrangement split move right: user.split_move_right() @@ -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 : user.split_set_width(number) split set height : user.split_set_height(number) diff --git a/tags/tabs/tabs.talon b/tags/tabs/tabs.talon index aceee4486c..f43e80ee10 100644 --- a/tags/tabs/tabs.talon +++ b/tags/tabs/tabs.talon @@ -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()