vscode-lua
vscode-lua copied to clipboard
Release lua-language-server for VSCode
### Which OS are you using? Linux ### Expected Behaviour "Lua: Export Document" -> Should generate markdown files after choosing the output folder. ### Actual Behaviour Nothing renders ### Reproduction...
### How are you using the lua-language-server? Visual Studio Code Extension (sumneko.lua) ### Which OS are you using? MacOS ### What is the issue affecting? Other ### Expected Behaviour I...
### Which OS are you using? Linux ### Expected Behaviour I would like completion and linting to work :( ### Actual Behaviour [Capture vidéo du 2023-12-21 21-17-28.webm](https://github.com/LuaLS/vscode-lua/assets/61794590/2bcec6c0-90a3-492b-8158-c65270537f30) The `stent` folder...
I'm trying to read the LSP traffic when using VSCode. Other languages support a `.trace.server` setting, see https://code.visualstudio.com/api/language-extensions/language-server-extension-guide#logging-support-for-language-server Setting it to `"verbose"` should log all JSON-RPC LSP message. The Lua...
Hi, I have a set of LuaCATS types for a proprietary SDK: https://github.com/notpeter/playdate-luacats/ I would like to create a simple VSCode extension which depends upon sumneko.lua and bundles those types....
### Which OS are you using? Linux ### Expected Behaviour I can specify and run an arbitrary location for the LSP binary. ### Actual Behaviour Only the bundled with the...
### Explain the feature The Lua Language Server supports [plugins](https://github.com/sumneko/lua-language-server/wiki/Plugins) that allow users to write custom Lua scripts that the language server will then run to output a modified file....
I tried to introduce a special comment for CPP-directives like `#include "bla.lua"` in lua.tmLanguage.json `.vscode-oss/extensions/sumneko.lua-2.5.3/syntaxes` But now luck with ``` { "begin": "^\\s*#[a-z]+", "beginCaptures": { "0": { "name": "punctuation.definition.comment.lua" }...
I can do a PR request if that would help. https://code.visualstudio.com/api/advanced-topics/remote-extensions I want to use this extension when developing on a WSL Remote.
### Description allow to use relative paths in lua workspace library config `Lua.workspace.library`, example: ```jsonc { "Lua.workspace.library": [ "../../Plugins/UnLua/Intermediate/IntelliSense" ] } ```