From 115191a5d34f5c199436c50f98f38c97720ef334 Mon Sep 17 00:00:00 2001 From: Ian Markind Date: Wed, 17 Oct 2018 01:28:48 -0400 Subject: [PATCH] Fix regression from talon update to version 0.0.8.7 --- jetbrains.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jetbrains.py b/jetbrains.py index d71c7f1..379b6a4 100644 --- a/jetbrains.py +++ b/jetbrains.py @@ -25,8 +25,8 @@ def delayed_click(): _numeral_map[str(n)] = n _numeral_map["oh"] = 0 # synonym for zero _numeral_map["and"] = None # drop me -_numerals = " (" + " | ".join(sorted(_numeral_map.keys())) + ")+" -_optional_numerals = " (" + " | ".join(sorted(_numeral_map.keys())) + ")*" +_numerals = " (" + " | ".join(sorted(_numeral_map.keys())) + ")++" +_optional_numerals = " (" + " | ".join(sorted(_numeral_map.keys())) + ")**" def text_to_number(words):