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
Lf cannot open to a file or folder that contains a space in the filename or anywhere in its path
this doesn't work: :Lf /path/folder one/file one.txt (space in path and file name) :Lf /path/folder-one/file one.txt (space in filename)
:Lf /path/folder one/file one.txt
:Lf /path/folder-one/file one.txt
this does: Lf /path/folder-one/file-one.txt (no spaces)
Lf /path/folder-one/file-one.txt
escaping the spaces doesn't work either
vim.cmd("Lf " .. string.gsub(vim.api.nvim_buf_get_name(0), ' ', '\\ '))
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Lf cannot open to a file or folder that contains a space in the filename or anywhere in its path
this doesn't work:
:Lf /path/folder one/file one.txt
(space in path and file name):Lf /path/folder-one/file one.txt
(space in filename)this does:
Lf /path/folder-one/file-one.txt
(no spaces)escaping the spaces doesn't work either
The text was updated successfully, but these errors were encountered: