Ответ 1
Вы можете сделать простой python script, чтобы сделать это.
1.
Сохраните этот код в папке пользователя как characterCounter.py
(Preferences > Browse Packages > User
):
import sublime, 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)
2. Затем перезапустите Sublime Text, чтобы загрузить его.