atom-shell-commands
atom-shell-commands copied to clipboard
Can't execute multiple commands at once.
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.