RechInformatica / rech-editor-batch

Edit Batch files with Visual Studio Code
MIT License
21 stars 5 forks source link

conflict with built-in extension #10

Closed yi-Xu-0100 closed 4 years ago

yi-Xu-0100 commented 4 years ago

image

GustavoASC commented 4 years ago

Hello @yi-Xu-0100, how are you? Thanks for opening this issue!

This message is expected because VSCode ships a built-in extension for batch files which conflicts with Rech Batch extension. The 'conflict' word means that built-in extension defines REM (upper-case) as comment delimiter, whilst Rech Batch defines rem (lowercase) for that.

Depending on the order extensions are activated, which is arbritary, one execution would use 'REM' and other execution would use 'rem'. Disabling built-in extension ensures this problem won't happen.

We will improve this message to make it more clear.

yi-Xu-0100 commented 4 years ago

Thank you for your reply to let me know the difference between these two plugins.

GustavoASC commented 4 years ago

Reopening issue to link the PR with improvements on the message, in order to provide a better understanding.