-
I'm not 100% sure how Luvit wraps each module with its own `require` function, but I really like the idea. Particularly for relative paths' sake.
https://github.com/luvit/luvit/blob/master/deps/req…
-
I'm using the nightly neovim build and am regularly encountering segfaults. I haven't yet 100% narrowed down when they occur, but it mostly seems to be when files are changed while the editor is opene…
-
Hello, I'm trying to work with processes in lua.
When I run the following code, (taken verbatim from https://github.com/luvit/luv/blob/master/docs.md), I get a segfault.
```lua
local uv = requi…
-
I'm trying to build a small test application with libuv embedded. I want to use zig cc because the caching system makes it much faster. The following command works for clang and gcc, but not zig cc.…
-
Hi,
I am writing a Neovim plugin with luv, spawn a command line and wait for all the output, then close the stdout/stderr pipe, here's the close code:
```lua
local function on_exit()
out_pip…
-
iTerm2 version 3 beta support show image inside terminal with command like `imgcat`, but the image could not be seen with that command inside terminal of neovim.
That would also be cool if neovim supp…
-
`lua -v` output: `Lua 5.4.4 Copyright (C) 1994-2022 Lua.org, PUC-Rio`.
```lua
local uv = require('luv')
local function setTimeout(callback, ms)
local timer = uv.new_timer()
timer:sta…
-
### Problem
Since `libluv-1.44` neovim build fails with
```bash
➜ build-1.45 git:(v0.9.4) ✗ make
[ 0%] Built target update_version_stamp
[ 92%] Built target nvim
[ 92%] Built target nvim_run…
-
Hi,
I'm using `vim.loop.spawn` (e.g., the luv library) in Neovim v0.9.2 to develop a plugin, which supports Windows.
I use the `spawn` API in this way:
```lua
local function println(li…
-
The title says it. It is quite annoying to have the editor to freeze for a second, an async managed api would improve the ux a lot. If you are open to this, I could try to make a PR.