swarn
swarn
For those like me who found this issue by searching, I *believe* that last comment is out of date. However, the mapping mentioned earlier works: ``` nnoremap d lua vim.lsp.util.show_line_diagnostics()...
I'm also getting the same error, maybe with a different cause. Building from a clean checkout, I get `module 'lpeg' not found`, though it happily handles other third-party deps. ```...
The behavior has not changed for me: using commit ddd257f75301a50c177fc24a693d39a45b47a689, I still need to unset `LUA_PATH` and `LUA_CPATH` before building, or it won't use the bundled deps. I thought that...
``` $ sw_vers ProductName: macOS ProductVersion: 13.2.1 BuildVersion: 22D68 $ cc -v Apple clang version 14.0.0 (clang-1400.0.29.202) Target: arm64-apple-darwin22.3.0 Thread model: posix InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin $ git clone [email protected]:neovim/neovim.git $ cd...
Yes, the lua interpreter it's seeing is the lua I have installed via homebrew: ``` $ which lua /opt/homebrew/bin/lua $ which luarocks /opt/homebrew/bin/luarocks $ lua -v Lua 5.4.4 Copyright (C)...
Well, looking at the log, I see that it first checks the bundled lua `.deps/usr/bin/luajit`, but it fails to find lpeg because it's still looking in the system libraries `/opt/homebrew/lib/lua/5.4`....
As far as I can tell, this is all expected behavior. If you have a system install of luarocks, and you set `LUA_PATH`/`LUA_CPATH` based on the output of `luarocks path`,...
You probably know this, but in case it's useful: Using `set()` on env variables in cmake only sets those variables for the cmake process itself. You have to use `cmake...
I'm not sure what you're asking. Do you want me to unset `LUA_PATH`, then set `LUA_PATH_5_4`? Let me emphasize that I'm happy to help, but this is not an ongoing...
I haven't bisected to find the specific commit, but one of them before 1cbfed0 fixed this issue for my setup. That is, I have `LUA_PATH` and `LUA_CPATH` variables, and they...