language-batchfile icon indicating copy to clipboard operation
language-batchfile copied to clipboard

Windows batch file language support for Atom.

Results 4 language-batchfile issues
Sort by recently updated
recently updated
newest added

Correct `brea` to `break`

This is a feature request. ```batch SET var=banana ECHO %var:*NA=An% & REM Output: Anna ECHO %var:NA=s% & REM Output: bass SET var=f*cker ECHO %var:**CK=bust% & REM Output: buster ECHO %var:**C=ba%...

Type: Bug windows batch: ``` if not %errorlevel%==0 echo error!!! & echo; & exit /b if not %errorlevel%==0 echo error!!! && echo; && exit /b if not %errorlevel%==0 echo error!!!...

Crossposting from https://github.com/microsoft/vscode/issues/223115 as this seems to be the source for cmd syntax highlighting in VS Code. Steps to Reproduce: 1. There is a way to create multiline comments in...