From 46de3f689faec8933c37603f3ff48d16885eb861 Mon Sep 17 00:00:00 2001 From: Andreas Arvidsson Date: Thu, 1 Jan 2026 11:56:22 +0100 Subject: [PATCH] Update descriptions for callAsFunction action in cheatsheet --- cursorless-talon/src/cheatsheet/sections/actions.py | 8 ++++---- .../src/lib/sampleSpokenFormInfos/defaults.json | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/cursorless-talon/src/cheatsheet/sections/actions.py b/cursorless-talon/src/cheatsheet/sections/actions.py index 9670987715..b7310f1dce 100644 --- a/cursorless-talon/src/cheatsheet/sections/actions.py +++ b/cursorless-talon/src/cheatsheet/sections/actions.py @@ -50,7 +50,7 @@ def get_actions() -> list[ListItemDescriptor]: ), ( lambda value: f"{value} ", - "Insert copy of at cursor", + "Insert copy of at selection", ), ], "pasteFromClipboard": [ @@ -66,7 +66,7 @@ def get_actions() -> list[ListItemDescriptor]: ), ( lambda value: f"{value} ", - "Move to cursor position", + "Move to selection", ), ], "applyFormatter": [ @@ -78,11 +78,11 @@ def get_actions() -> list[ListItemDescriptor]: "callAsFunction": [ ( lambda value: f"{value} ", - "Call on selection", + "Insert call to on selection", ), ( lambda value: f"{value} on ", - "Call on ", + "Insert call to on ", ), ], "wrapWithPairedDelimiter": [ diff --git a/packages/cheatsheet/src/lib/sampleSpokenFormInfos/defaults.json b/packages/cheatsheet/src/lib/sampleSpokenFormInfos/defaults.json index 175bf8ff11..3a8da9d9cc 100644 --- a/packages/cheatsheet/src/lib/sampleSpokenFormInfos/defaults.json +++ b/packages/cheatsheet/src/lib/sampleSpokenFormInfos/defaults.json @@ -60,11 +60,11 @@ "variations": [ { "spokenForm": "call ", - "description": "Call on selection" + "description": "Insert call to on selection" }, { "spokenForm": "call on ", - "description": "Call on " + "description": "Insert call to on " } ] }, @@ -368,7 +368,7 @@ }, { "spokenForm": "move ", - "description": "Move to cursor position" + "description": "Move to selection" } ] }, @@ -442,7 +442,7 @@ }, { "spokenForm": "bring ", - "description": "Insert copy of at cursor" + "description": "Insert copy of at selection" } ] },