Copied from here
Save as .py , put in (Preferences > Browse Packages > User) and restart Sublime
| import sublime_plugin | |
| class PositionListener(sublime_plugin.EventListener): | |
| def on_selection_modified(self, view): | |
| text = "Position: " | |
| sels = view.sel() | |
| for s in sels: | |
| text += " " + str(s.begin()) | |
| if not s.empty(): | |
| text += "-" + str(s.end()) + " " | |
| view.set_status('exact_pos', text) |
This is great, thanks!
Thank you so much!
Awesome.