mirror of
https://github.com/folke/snacks.nvim
synced 2025-12-23 08:47:57 +00:00
fix(dashboard): escape filenames for edit. Closes #1453
This commit is contained in:
parent
1239fb84bc
commit
8b0e79ab4c
1 changed files with 1 additions and 1 deletions
|
|
@ -857,7 +857,7 @@ function M.sections.recent_files(opts)
|
|||
ret[#ret + 1] = {
|
||||
file = file,
|
||||
icon = "file",
|
||||
action = ":e " .. file,
|
||||
action = ":e " .. vim.fn.fnameescape(file),
|
||||
autokey = true,
|
||||
}
|
||||
if #ret >= limit then
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue