You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
digits="zero one two three four five six seven eight nine".split()
Using a list here is neat from a "beautiful code" standpoint, but for making it customizable, it would be better to have either a .talon-list, or write out a dictionary with explicit word -> number pairs so a user who wants to change commands that use <user.number_key> (like the mouse grid for example) can just change or add lines
The text was updated successfully, but these errors were encountered:
We discussed this on the community backlog session today. Trying to define this with a Talon list would create the problem that we are trying to resolve in #1561. A potential solution we discussed and which was generally agreed would be helpful would be to define a single python file that just contains a dictionary of numbers to spoken form mappings; this could be imported by other files.
community/core/keys/keys.py
Line 6 in d426076
Using a list here is neat from a "beautiful code" standpoint, but for making it customizable, it would be better to have either a .talon-list, or write out a dictionary with explicit word -> number pairs so a user who wants to change commands that use
<user.number_key>
(like the mouse grid for example) can just change or add linesThe text was updated successfully, but these errors were encountered: