You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On Sublime Text 3, the footnote shortcut fails and prints the following to the console:
Traceback (most recent call last):
File "/Applications/Sublime Text.app/Contents/MacOS/sublime_plugin.py", line 549, in run_
return self.run(edit)
File "footnotes in /Users/phil/Library/Application Support/Sublime Text 3/Installed Packages/Restructured Text (RST) Snippets.sublime-package", line 109, in run
TypeError: begin_edit() missing 2 required positional arguments: 'edit_token' and 'cmd'
As far as I found out, Sublime Text 3 has changed the way begin_edit() is used.
The text was updated successfully, but these errors were encountered:
jimklo
added a commit
to jimklo/sublime-rst-completion
that referenced
this issue
Mar 24, 2015
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().
On Sublime Text 3, the footnote shortcut fails and prints the following to the console:
As far as I found out, Sublime Text 3 has changed the way begin_edit() is used.
The text was updated successfully, but these errors were encountered: