Creating a custom command with a list as the command argument (see below) throws an error:
Traceback (most recent call last):
File "C:\Program Files\Sublime Text 3\sublimeplugin.py", line 1082, in run
return self.run(edit, **args)
File "\files\tsredirect$\ianh\AppData\Roaming\Sublime Text 3\Packages\AccuTermClient\AccuTermClient.py", line 565, in run
if mv_file: command = command.replace('${FILE}', mv_file)
AttributeError: 'list' object has no attribute 'replace'
Creating a custom command with a list as the command argument (see below) throws an error: Traceback (most recent call last): File "C:\Program Files\Sublime Text 3\sublimeplugin.py", line 1082, in run return self.run(edit, **args) File "\files\tsredirect$\ianh\AppData\Roaming\Sublime Text 3\Packages\AccuTermClient\AccuTermClient.py", line 565, in run if mv_file: command = command.replace('${FILE}', mv_file) AttributeError: 'list' object has no attribute 'replace'
Example command: { "caption": "WHO WHO", "command": "accu_term_execute", "args": { "command": ["WHO 61", "WHO 60"], "output_to": "console"} },