Update Plist Binary.py
def run_ for ST3 takes 3 arguments, according to the console.
This commit is contained in:
@@ -2,7 +2,7 @@ import sublime, sublime_plugin
|
|||||||
import os
|
import os
|
||||||
|
|
||||||
class ToggleBinaryCommand(sublime_plugin.TextCommand):
|
class ToggleBinaryCommand(sublime_plugin.TextCommand):
|
||||||
def run_(self, args):
|
def run_(self, view, args):
|
||||||
|
|
||||||
fname = self.view.file_name()
|
fname = self.view.file_name()
|
||||||
if os.path.splitext(fname)[1].lower() != ".plist":
|
if os.path.splitext(fname)[1].lower() != ".plist":
|
||||||
@@ -20,4 +20,4 @@ class ToggleBinaryCommand(sublime_plugin.TextCommand):
|
|||||||
os.system("plutil -convert xml1 " + fname)
|
os.system("plutil -convert xml1 " + fname)
|
||||||
self.view.set_syntax_file("Packages/XML/XML.tmLanguage")
|
self.view.set_syntax_file("Packages/XML/XML.tmLanguage")
|
||||||
|
|
||||||
self.view.run_command('revert');
|
self.view.run_command('revert');
|
||||||
|
|||||||
Reference in New Issue
Block a user