diff --git a/cursorless-talon/src/marks/mark.py b/cursorless-talon/src/marks/mark.py index 22cbc9fa0d..eb46e1a4be 100644 --- a/cursorless-talon/src/marks/mark.py +++ b/cursorless-talon/src/marks/mark.py @@ -58,10 +58,14 @@ def cursorless_grapheme(m) -> str: @mod.capture( - rule="[{user.cursorless_hat_color}] [{user.cursorless_hat_shape}] " + rule="[{user.cursorless_hat_color} | gray] [{user.cursorless_hat_shape}] " ) def cursorless_decorated_symbol(m) -> dict[str, Any]: """A decorated symbol""" + if m[0] == "gray": + actions.app.notify( + "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'" + ) hat_color = getattr(m, "cursorless_hat_color", "default") try: hat_style_name = f"{hat_color}-{m.cursorless_hat_shape}"