mgaitan / sublime-rst-completion

Restructured Text snippets and code completion hotkeys for Sublime Text 2 and 3
BSD 3-Clause "New" or "Revised" License
251 stars 52 forks source link

Fix for Issue #78 #80

Closed jimklo closed 9 years ago

jimklo commented 9 years ago
  1. ST3 disallows access to view.begin_edit() and view.end_edit() since it's passed into the TextCommand.
  2. Python3 doesn't allow you to sort dict_keys, so need to cast to list(dict_keys).sort().
mgaitan commented 9 years ago

thank you very much!