Proper 'Command Line Interpreter' Syntax?
Posted: 07 May 2018 19:08
What is the proper configuration of CommandLineInterpreter.Executable & CommandLineInterpreter.Arguments?
I'm attempting to use the Open Command Prompt Here feature with Hyper. With CommandLineInterpreter.Executable set to C:\...\Hyper.exe, it launches an instance of Hyper, but the current directory is not successfully passed.
After searching the forum for this issue, I tried multiple combinations of %comspec%, <command>, <curpath>, and various other placeholders that were mentioned. None of these worked.
I also tried making a simple batch script to test the passed arguments, but none of the previously mentioned combinations resulted in any output.
IMO the configuration menu should contain a more helpful description of how to use this feature, along with 2 or 3 functional examples (showing the contents of both Executable and Arguments). The current message is not very helpful:
Use <command> as placeholder for address bar input (!-escape).
I'm attempting to use the Open Command Prompt Here feature with Hyper. With CommandLineInterpreter.Executable set to C:\...\Hyper.exe, it launches an instance of Hyper, but the current directory is not successfully passed.
After searching the forum for this issue, I tried multiple combinations of %comspec%, <command>, <curpath>, and various other placeholders that were mentioned. None of these worked.
I also tried making a simple batch script to test the passed arguments, but none of the previously mentioned combinations resulted in any output.
Code: Select all
@echo off
echo %1
@pause
Use <command> as placeholder for address bar input (!-escape).