I want to use GML's Intellisense in Lua language mode, but I tried multiple methods but they are all invalid.
I also tried to use DefinitelyTyped, but it only works fine in JavaScript and TypeScript, can't be used for other languages.
I want to use GML's Intellisense in Lua language mode, but I tried multiple methods but they are all invalid.
I also tried to use DefinitelyTyped, but it only works fine in JavaScript and TypeScript, can't be used for other languages.
There is an extension called vscode-lua that supposedly provides intellisense for the lua language.
You can change the language mode of a file by clicking on the language indicator in the Status Bar. If you set it to GML, then the GLM's extension's intellisense should kick in
You can also mark all lua files as gml using files.associations
https://code.visualstudio.com/docs/languages/overview#_adding-a-file-extension-to-a-language:
"files.associations": {
"*.lua": "gml"
}
In Visual Studio 2017 I could use the Ctrl+, shortcut to navigate from a symbol in an INI file to its definition in a C++ header file. For it to work you need to make sure the header file where the symbol is defined is part of the solution and not just included from a CPP file.