atom-shell-commands icon indicating copy to clipboard operation
atom-shell-commands copied to clipboard

Can't execute multiple commands at once.

Open bitstunt opened this issue 4 years ago • 0 comments

In VS Code we can execute multiple commands using "&&" in arguments array the same can't be done in .atom/config.cson. Keymap is also not working.

"atom-shell-commands": commands: [ { name: "C++ - Single Source File" command: "C:\Program Files\mingw-w64\x86_64-8.1.0-posix-seh-rt_v6-rev0\mingw64\bin\g++.exe" arguments: [ "-std=c++17" "{FileName}" "-o" "{FileNameNoExt}.exe" "&&" "{FileNameNoExt}.exe" "<" "inputf.in" ">" "outputf.out" ] options: cwd: "{FileDir}" keymap: "shift+ctrl+b" } ]

This is the configuration that I wanted to work. Please indent it propperly if you wanna test it.

bitstunt avatar Jun 27 '21 15:06 bitstunt