How do you set up 'languageConfigs' in 1.4.3?
So i'm using GDScript that uses both '#' and '##' as line comment, how do i utilize this new feature to make the plugin to recognize them?
Any help is appreciated.
+1 Need some docs or basic example
You can set it like this, it's an example make Python comment as "//" instead of "#"
"betterAlign.languageConfigs": {
"python": {
"lineComments": [ "//"],
"blockComments": []
}
}
Maybe I can update the configuration description to better understand.
Also must we change something in our config for the new version to work?
@lonix1 Depends on your language, if you have special languages, you will need to set this configuration, or you can make a PR to support your language in the extension.
I installed the new version... I'm using c# and it works without changing anything. :-)
(I assume some languages already have built-in support.)