About 1,420,000 results
Open links in new tab
  1. How to run Lua script from within VS Code - Stack Overflow

    Oct 6, 2021 · I suggest you to read the VSCode in order to learn how to create it properly. NOTE: in the command property, where you read "lua54", you must write the name of the lua interpreter …

  2. How to get LUA to work in VSCode so it runs to the output window?

    Jun 24, 2019 · How to get LUA to work in VSCode so it runs to the output window? Asked 6 years, 7 months ago Modified 1 year, 5 months ago Viewed 17k times

  3. How to debug Lua Love2D with VSCode? - Stack Overflow

    Nov 29, 2020 · 7 I'm looking for suggestions on how to debug Lua Code in Visual Studio Code. I'm using Love2D, so I understand that I will somehow need to embed my debugging code, because it is not …

  4. scripting - Visual Studio Code + Lua - Stack Overflow

    Oct 11, 2016 · Three years later and we have vscode-lua. From what I gather it has some kind of Intellisense and could possibly pe configured to find paths to the needed libraries, version …

  5. lua - undefined global lov2d not working in vs code - Stack Overflow

    Jun 8, 2024 · The lua language server (lls) doesn't require love by default so, add this at every first line of any lua file that uses the love table. also with the love support extension you can use alt+l in order …

  6. How to Debug Lua in Visual Studio Code - Stack Overflow

    Apr 15, 2020 · The extension to Visual Studio Code named "Lua Debug" and "extensionPath" by actboy168 (Thank you!) need to be installed beforehand. It is also handy to have lua installed with …

  7. macos - How to debug Lua 5.4 on VScode? - Stack Overflow

    Jun 24, 2023 · Initially I've been using VScode with plugin satoren.lrdb which worked relatively well, but when debugging it only supported lua 5.3 and when I've executed the same script from CLI it was …

  8. How to add Lua libraries into a project and use "require" in Visual ...

    Aug 4, 2021 · I am quite new to Lua and couldn't information as to how to add Lua libraries into a project and use "require" in Visual Studio Code

  9. neovim - Error executing lua /home/user/.config/nvim/lua/init.lua:7 ...

    Jan 20, 2024 · This error occurs because you are installing vim-plug using init.vim and the VSCode theme using init.lua file. Nvim can use either one, but not both files simultaneously [1].

  10. Simple lua code does not run in Visual Studio Code

    Sep 15, 2024 · A = {{1,2},{3,4}} io.write(#A,"\n") This executes successfully on a macOS terminal. I have installed the following extensions: Lua: Lua Language Server coded by Lua Lua Debug: VSCode …