Skip to content

Commit 1e0cf76

Browse files
Change add to append
1 parent ccec291 commit 1e0cf76

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

cursorless-talon/src/spoken_forms.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
"NOTE FOR USERS": "Please don't edit this json file; see https://www.cursorless.org/docs/user/customization",
33
"actions.csv": {
44
"simple_action": {
5-
"add post": "addSelectionAfter",
6-
"add pre": "addSelectionBefore",
7-
"add": "addSelection",
5+
"append post": "addSelectionAfter",
6+
"append pre": "addSelectionBefore",
7+
"append": "addSelection",
88
"bottom": "scrollToBottom",
99
"break point": "toggleLineBreakpoint",
1010
"break": "breakLine",

data/fixtures/recorded/actions/addPostWhale.yml renamed to data/fixtures/recorded/actions/appendPostWhale.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
languageId: plaintext
22
command:
33
version: 7
4-
spokenForm: add post whale
4+
spokenForm: append post whale
55
action:
66
name: addSelectionAfter
77
target:

data/fixtures/recorded/actions/addPreWhale.yml renamed to data/fixtures/recorded/actions/appendPreWhale.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
languageId: plaintext
22
command:
33
version: 7
4-
spokenForm: add pre whale
4+
spokenForm: append pre whale
55
action:
66
name: addSelectionBefore
77
target:

data/fixtures/recorded/actions/addWhale.yml renamed to data/fixtures/recorded/actions/appendWhale.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
languageId: plaintext
22
command:
33
version: 7
4-
spokenForm: add whale
4+
spokenForm: append whale
55
action:
66
name: addSelection
77
target:

packages/cursorless-engine/src/spokenForms/defaultSpokenFormMapCore.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -144,9 +144,9 @@ export const defaultSpokenFormMapCore: DefaultSpokenFormMapDefinition = {
144144

145145
customRegex: {},
146146
action: {
147-
addSelection: "add",
148-
addSelectionAfter: "add post",
149-
addSelectionBefore: "add pre",
147+
addSelection: "append",
148+
addSelectionAfter: "append post",
149+
addSelectionBefore: "append pre",
150150
breakLine: "break",
151151
scrollToBottom: "bottom",
152152
toggleLineBreakpoint: "break point",

0 commit comments

Comments
 (0)