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
I noted some strange behavior while using lf.vim and opened an issue: ptzz/lf.vim#14
lf.vim
I investigated a little and it could be that the bug is in bclose.vim.
bclose.vim
Look at line 50 inside bclose.vim:
if prevbuf > 0 && buflisted(prevbuf) && prevbuf != w
The last condition is comparing a buffer id (prevbuf) with a window id (w), which I think is the source of the problem.
prevbuf
w
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I noted some strange behavior while using
lf.vim
and opened an issue: ptzz/lf.vim#14I investigated a little and it could be that the bug is in
bclose.vim
.Look at line 50 inside
bclose.vim
:The last condition is comparing a buffer id (
prevbuf
) with a window id (w
), which I think is the source of the problem.The text was updated successfully, but these errors were encountered: