I create some useful vim command aliases like:
command GccAndRun !gcc main.c && ./a.out However, it's better to run a.out and check source code in same window.
I here about vim internel terminal, so I write the follwing sentence:
command GccAndRun terminal gcc main.c && ./a.out But given error message: gcc: error: &&: No such file or directory in opened terminal.
I don't know how to fix it. Please help me!