prb28 / vscode-amiga-assembly

Amiga Assembly extension for Visual Studio Code
GNU General Public License v3.0
178 stars 12 forks source link

amigaassembly: ... terminal always pop up despite disabled task! #305

Closed geijer closed 4 months ago

geijer commented 4 months ago

I have disabled "amigaassembly: compile current file" by this in tasks.json:

...
        {
            "type": "amigaassembly",
            "vasm": {
                "enabled": false,
            },
            "label": "amigaassembly: compile current file"
        }
...

but everytime I save a .s file my current vscode terminal is put to back and the "amigaassembly: compile current file (...)" terminal is put to the front with the completely unnecessary message:

  • Executing task: amigaassembly: compile current file

Compiling current editor file... VASM compilation is disabled in the configuration

  • The terminal process failed to launch (exit code: 1).
  • Terminal will be reused by tasks, press any key to close it.

Is it possible to disable all "auto compile/build" completely?

prb28 commented 4 months ago

You have to disable the syntax checking : https://github.com/prb28/vscode-amiga-assembly/wiki/FAQ#how-can-i-use-the-extension-without-the-syntax-checking-of-vasm

geijer commented 4 months ago

RTFM...