PropertyValue
http://www.w3.org/1999/02/22-rdf-syntax-ns#type
http://www.w3.org/ns/prov#value
  • Below is a patch to add the fixes to your code.Code: Select all--- toggle_quotes_original.py Wed Jul 13 10:03:17 2011+++ toggle_quotes.py Mon Jul 11 09:38:24 2011@@ -2,6 +2,7 @@ class ToggleQuotesCommand(sublime_plugin.TextCommand): def run(self, edit):+ sels = list(self.view.sel()) for region in self.view.sel(): scope = self.view.scope_name(region.begin()) @@ -63,15 +64,10 @@ self.view.replace(ed
http://www.w3.org/ns/prov#wasQuotedFrom
  • sublimetext.com