We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3242176 commit 8c9cfc3Copy full SHA for 8c9cfc3
cursorless-talon/src/marks/decorated_mark.py
@@ -26,14 +26,10 @@ def cursorless_grapheme(m) -> str:
26
27
28
@mod.capture(
29
- rule="[{user.cursorless_hat_color} | gray] [{user.cursorless_hat_shape}] <user.cursorless_grapheme>"
+ rule="[{user.cursorless_hat_color}] [{user.cursorless_hat_shape}] <user.cursorless_grapheme>"
30
)
31
def cursorless_decorated_symbol(m) -> dict[str, Any]:
32
"""A decorated symbol"""
33
- if m[0] == "gray":
34
- actions.app.notify(
35
- "The color 'gray' is the default and doesn't need to be spoken out loud. Just say eg 'take air' instead of 'take gray air'"
36
- )
37
hat_color = getattr(m, "cursorless_hat_color", "default")
38
try:
39
hat_style_name = f"{hat_color}-{m.cursorless_hat_shape}"
0 commit comments