We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The following causes neovim to crash when hitting f12:
function test() local async = require('plenary.async') local Job = require('plenary.job') print("Test") local e,t = async.uv.fs_stat("/tmp") print(vim.inspect(e)) print(vim.inspect(t)) local output, code = Job:new({command = "/bin/echo", args = {"Hello"}}):sync() print(vim.inspect(code)) print(vim.inspect(output)) print("EndTest") end vim.keymap.set("n", "<f12>", async.void(test))
It works fine without the call to fs_stat, or without the Job, but with both nvim crashes (SIGABRT). Using NVIM v0.7.0-dev+1292-ge9b53f3fb on linux.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The following causes neovim to crash when hitting f12:
It works fine without the call to fs_stat, or without the Job, but with both nvim crashes (SIGABRT).
Using NVIM v0.7.0-dev+1292-ge9b53f3fb on linux.
The text was updated successfully, but these errors were encountered: