Open ryanpcmcquen opened 4 years ago
All these calls:
sel = view.sel()[0].a
Should be wrapped like so:
try:
sel = view.sel()[0].a
except IndexError:
pass
SAME ERROR!
This should be fixed as it can randomly break ST and even affect other packages.
@liamcain do you have time to address it? Alternatively are you open to transferring this repo to https://github.com/SublimeText/ org?