About 9,020,000 results
Open links in new tab
  1. How to open a lua file on text editor using windows 10

    May 11, 2020 · I want to open a .Lua file on a text editor, I have tried most of the text editors but its still didn't let me. is there any process that i need to do to open the file like we usually doing …

  2. filesystems - Get containing path of lua file - Stack Overflow

    I am wondering if there is a way of getting the path to the currently executing lua script file? This is specifically not the current working directory, which could be entirely different. I know

  3. How to read data from a file in Lua - Stack Overflow

    How to read data from a file in Lua Asked 13 years, 6 months ago Modified 1 year, 4 months ago Viewed 209k times

  4. decompiler - How to decompile a Lua file? - Stack Overflow

    Nov 21, 2020 · 4 I have a lua file, which, when opened in Notepad++ shows a mixture of English (uncorrupted), understandable text, as well as a mixture of "NULS" "ETX's" and other strange …

  5. installation - How to install Lua on windows - Stack Overflow

    Lua does not have a certified IDE or compiler to come with it. You usually run lua code from a lua command line / lua file which will handle the tasks you are attempting to create.

  6. Create a new file in Lua/LuaFileSystem - Stack Overflow

    Jan 20, 2017 · I've looked over the Lua & LuaFileSystem Docs and have yet to find a way to create a new file, I also scouted around on here but to the same end. As a note, the solution …

  7. lua_ls not working when opening .lua file from startup

    Mar 6, 2025 · The lua-language-server not started while opening a .lua file from startup using nvim a.lua. :LspInfo showing 0 client(s) attached to this buffer. But it works when switching to …

  8. Reading file line by line in Lua - Stack Overflow

    Nov 1, 2013 · Lua manages files using the same model of the underlying C implementation (this model is used also by other programming languages and it is fairly common). If you are not …

  9. How to source init.lua without restarting neovim - Stack Overflow

    May 28, 2022 · Thanks for chiming in. Doesn't % target the active buffer though? I'm trying to assign a keymap to source my init.lua file (including modules) from any location.

  10. How to create include files in Lua language? - Stack Overflow

    May 28, 2010 · I want to create a header file in Lua (header.lua), then execute the require function to load it. How do I execute require to a file that I have created?