dotfiles/modules/home/gui/apps/tools/espanso/config/numbers.nix
2025-06-01 14:55:05 -05:00

41 lines
1.1 KiB
Nix
Executable file

{ matchHelper, ... }:
[
(matchHelper ":super1" "¹")
(matchHelper ":super2" "²")
(matchHelper ":super3" "³")
(matchHelper ":super4" "")
(matchHelper ":super5" "")
(matchHelper ":super6" "")
(matchHelper ":super7" "")
(matchHelper ":super8" "")
(matchHelper ":super9" "")
(matchHelper ":super0" "")
(matchHelper ":sub1" "")
(matchHelper ":sub2" "")
(matchHelper ":sub3" "")
(matchHelper ":sub4" "")
(matchHelper ":sub5" "")
(matchHelper ":sub6" "")
(matchHelper ":sub7" "")
(matchHelper ":sub8" "")
(matchHelper ":sub9" "")
(matchHelper ":sub0" "")
(matchHelper ":1/2" "½")
(matchHelper ":1/3" "")
(matchHelper ":2/3" "")
(matchHelper ":1/4" "¼")
(matchHelper ":3/4" "¾")
(matchHelper ":1/5" "")
(matchHelper ":2/5" "")
(matchHelper ":3/5" "")
(matchHelper ":4/5" "")
(matchHelper ":1/6" "")
(matchHelper ":5/6" "")
(matchHelper ":1/7" "")
(matchHelper ":1/8" "")
(matchHelper ":3/8" "")
(matchHelper ":5/8" "")
(matchHelper ":7/8" "")
(matchHelper ":1/9" "")
(matchHelper ":1/10" "")
]