From 845cf2246edde2c41f8746e5e50a4375b3577dfd Mon Sep 17 00:00:00 2001 From: Andreas Arvidsson Date: Fri, 23 Jan 2026 15:22:38 +0100 Subject: [PATCH] Remove deprecated cursorless_custom_number_small tag --- cursorless-talon/src/number_small.py | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 cursorless-talon/src/number_small.py diff --git a/cursorless-talon/src/number_small.py b/cursorless-talon/src/number_small.py deleted file mode 100644 index e043682c2f..0000000000 --- a/cursorless-talon/src/number_small.py +++ /dev/null @@ -1,20 +0,0 @@ -""" -DEPRECATED @ 2024-12-21 -This file allows us to use a custom `number_small` capture. See #1021 for more info. -""" - -from talon import Module, app, registry - -mod = Module() - -mod.tag("cursorless_custom_number_small", "DEPRECATED!") - - -def on_ready(): - if "user.cursorless_custom_number_small" in registry.tags: - print( - "WARNING tag: 'user.cursorless_custom_number_small' is deprecated and should not be used anymore, as Cursorless now uses community number_small" - ) - - -app.register("ready", on_ready)