Added some debug prints.
This commit is contained in:
parent
a10cb2f207
commit
70288a4cc2
3
beau.py
3
beau.py
|
|
@ -27,6 +27,7 @@ class BeauCommand(sublime_plugin.TextCommand):
|
|||
return
|
||||
|
||||
print('Using ' + self.path)
|
||||
print([ self.path, '-c', active_view.file_name(), '--clean-list' ])
|
||||
|
||||
proc = Popen([
|
||||
self.path,
|
||||
|
|
@ -77,6 +78,8 @@ class BeauCommand(sublime_plugin.TextCommand):
|
|||
|
||||
active_window.status_message('Executing: ' + alias)
|
||||
|
||||
print([ self.path, '-c', active_view.file_name(), '-R', alias ])
|
||||
|
||||
proc = Popen([
|
||||
self.path,
|
||||
'-c',
|
||||
|
|
|
|||
Loading…
Reference in New Issue