Is there a VSCode equivalent to Notepad++'s user defined language configuration?

Viewed 1224
1 Answers

Looks like there is support for something in this direction. The terminology is slightly different though and there may not be a GUI interface like Notedpad++

Declarative Language Feature Syntax Highlight Guide: VS Code uses TextMate grammar for syntax highlighting. This guide will walk you through writing a simple TextMate grammar and converting it into a VS Code extension.

Create Custom Language in Visual Studio Code

https://code.visualstudio.com/api/language-extensions/overview#declarative-language-features

https://code.visualstudio.com/api/language-extensions/language-configuration-guide

Related