Skip to content
Merged
Show file tree
Hide file tree
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
8 changes: 4 additions & 4 deletions cursorless-talon/src/cheatsheet/sections/actions.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def get_actions() -> list[ListItemDescriptor]:
),
(
lambda value: f"{value} <target>",
"Insert copy of <target> at cursor",
"Insert copy of <target> at selection",
),
],
"pasteFromClipboard": [
Expand All @@ -66,7 +66,7 @@ def get_actions() -> list[ListItemDescriptor]:
),
(
lambda value: f"{value} <target>",
"Move <target> to cursor position",
"Move <target> to selection",
),
],
"applyFormatter": [
Expand All @@ -78,11 +78,11 @@ def get_actions() -> list[ListItemDescriptor]:
"callAsFunction": [
(
lambda value: f"{value} <target>",
"Call <target> on selection",
"Insert call to <target> on selection",
),
(
lambda value: f"{value} <target 1> on <target 2>",
"Call <target 1> on <target 2>",
"Insert call to <target 1> on <target 2>",
),
],
"wrapWithPairedDelimiter": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,11 @@
"variations": [
{
"spokenForm": "call <target>",
"description": "Call <target> on selection"
"description": "Insert call to <target> on selection"
},
{
"spokenForm": "call <target 1> on <target 2>",
"description": "Call <target 1> on <target 2>"
"description": "Insert call to <target 1> on <target 2>"
}
]
},
Expand Down Expand Up @@ -368,7 +368,7 @@
},
{
"spokenForm": "move <target>",
"description": "Move <target> to cursor position"
"description": "Move <target> to selection"
}
]
},
Expand Down Expand Up @@ -442,7 +442,7 @@
},
{
"spokenForm": "bring <target>",
"description": "Insert copy of <target> at cursor"
"description": "Insert copy of <target> at selection"
}
]
},
Expand Down
Loading