-
-
Notifications
You must be signed in to change notification settings - Fork 245
New issue
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
error in function 'nvim_open_win' #47
Comments
Yep, have observed this as well. Raised a related issue here: #46 |
I'm experiencing the same issue using:
I think it might be related to neovim, there is an open issue related to the same problem: neovim/neovim#19458 |
I found a similar issue to this, here: sindrets/diffview.nvim#185 if vim.fn.has "nvim-0.8" == 1 then
vim.api.nvim_create_autocmd(
{ "CursorMoved", "CursorHold", "BufWinEnter", "BufFilePost", "InsertEnter", "BufWritePost", "TabClosed" },
{
callback = function()
require("user.winbar").get_winbar()
end,
}
)
end This is the line ref: https://github.com/ChristianChiarulli/nvim/blob/master/lua/user/autocommands.lua#L129-L141 |
the error only appears after moving the line
The text was updated successfully, but these errors were encountered: