You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've noticed errors a few times when it saves a window where I'm running a command that includes a glob. As an example, I'd run vim resurrect/*.lua, and observed the following error when periodic_save triggered:
Thanks for the issue! You are 100% correct in that it should be escaped, and i even think it goes beyond just the glob, as the only things escaped in the file names are directory seperators. So filenames with characters like [ will also be a problem as they are treated as shell operators
I would like to solve this properly instead of just making a quick patch as I think it is a bigger issue, but given that I am currently busy at university then I don't know when I will be able to complete it.
However if this is bugging you, then you can use the branch with a temporary fix: temp_glob_fix by using git switch within the directory of the plugin 😄
I have the following configuration in place:
I've noticed errors a few times when it saves a window where I'm running a command that includes a glob. As an example, I'd run
vim resurrect/*.lua
, and observed the following error when periodic_save triggered:resurrect.save_state.start
orresurrect.periodic_save
event handler?The text was updated successfully, but these errors were encountered: