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
|
return
|
||||||
|
|
||||||
print('Using ' + self.path)
|
print('Using ' + self.path)
|
||||||
|
print([ self.path, '-c', active_view.file_name(), '--clean-list' ])
|
||||||
|
|
||||||
proc = Popen([
|
proc = Popen([
|
||||||
self.path,
|
self.path,
|
||||||
|
|
@ -77,6 +78,8 @@ class BeauCommand(sublime_plugin.TextCommand):
|
||||||
|
|
||||||
active_window.status_message('Executing: ' + alias)
|
active_window.status_message('Executing: ' + alias)
|
||||||
|
|
||||||
|
print([ self.path, '-c', active_view.file_name(), '-R', alias ])
|
||||||
|
|
||||||
proc = Popen([
|
proc = Popen([
|
||||||
self.path,
|
self.path,
|
||||||
'-c',
|
'-c',
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue