Open kaushikgopal opened 11 years ago
+1
+1
+1
+1
+1
I was wanting this updated also, now for Sublime Text 4. I figured out a simple fix, at least for markdown files (my main use case.
In Bullet.py, comment out the following lines 96, 97, and 98:
edit = view.begin_edit()
view.insert(edit, loc.end(), insertion)
view.end_edit(edit)
and paste the following on a newline 99:
view.run_command("insert", {"characters": insertion})
I think the plugin needs to be modified for ST3?
Here's the exception i'm getting from console:
Cheers.