Skip to content

Commit 93bea1b

Browse files
committed
Tweaks
1 parent e2f1229 commit 93bea1b

File tree

3 files changed

+20
-16
lines changed

3 files changed

+20
-16
lines changed

cursorless-talon/src/cursorless.talon

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ app: vscode
1919
<user.cursorless_wrapper> {user.cursorless_wrap_action} <user.cursorless_target>:
2020
user.cursorless_wrap(cursorless_wrap_action, cursorless_target, cursorless_wrapper)
2121

22-
{user.cursorless_window_trigger} (reference | ref | cheatsheet | cheat sheet): user.cursorless_cheat_sheet_show_html()
23-
{user.cursorless_window_trigger} (instructions | docks | help) | help {user.cursorless_window_trigger}:
22+
{user.cursorless_homophone} (reference | ref | cheatsheet | cheat sheet): user.cursorless_cheat_sheet_show_html()
23+
{user.cursorless_homophone} (instructions | docks | help) | help {user.cursorless_homophone}:
2424
user.cursorless_open_instructions()
2525

2626
cursorless settings:

cursorless-talon/src/term.py

Lines changed: 0 additions & 14 deletions
This file was deleted.

cursorless-talon/src/terms.py

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
"""
2+
Stores terms that are used in many different places
3+
"""
4+
from talon import Context, Module
5+
6+
mod = Module()
7+
ctx = Context()
8+
9+
mod.list(
10+
"cursorless_homophone",
11+
"Various alternative pronunciations of 'cursorless' to improve accuracy",
12+
)
13+
14+
ctx.lists["user.cursorless_homophone"] = [
15+
"cursorless",
16+
"cursor less",
17+
"cursor list",
18+
]

0 commit comments

Comments
 (0)