\i0, \i1 commands stopped working for me while everything else was working as expected.
I couldn't figure out what exactly was causing the bug, but got things working for myself by changing the following lines (in text_pastry.py, Line 600):
self.history_manager.append(data={"command": "insert_nums", "args": {"current": "1", "step": "1", "padding": "1"}}, label=item.label)
self.window.run_command("insert_nums", {"current": "1", "step": "1", "padding": "1"})
with:
self.history_manager.append(data={"command": "text_pastry_range", "args": {'start': 1, 'step': 1, 'padding': 1}}, label=item.label)
self.window.run_command("text_pastry_range", {'start': 1, 'step': 1, 'padding': 1})
\i0,\i1commands stopped working for me while everything else was working as expected.I couldn't figure out what exactly was causing the bug, but got things working for myself by changing the following lines (in
text_pastry.py, Line 600):with: