Yochem van Rosmalen
Yochem van Rosmalen
I tried to reproduce this, but was not able to. It seems that somewhere a `set add` or `vim.o.add = ...` is run, giving the E518 error. This would happen...
You could also try the following to fix it: ```lua log_open = function() vim.cmd("sp '" .. logfile .. "'") end, ``` which should put single quotes around the log path.
Okay then I'm pretty sure something is wrong with the value of `logfile`. Could you change that line 284 into this: ```lua log_open = function() print(logfile) vim.cmd("sp " .. logfile)...
so no error anymore? what is the filename of the log file? I'm not a maintainer, you can create a PR if you want blank lines between each plugin.
The PR would be this I think: changing line 146 in `lua/paq.lua` to this: ```lua log("\n" .. pkg.name .. " updating...") ```
Sorry, should be 142: https://github.com/savq/paq-nvim/blob/master/lua/paq.lua#L142
Hi, I saw this issue and thought this would be an easy fix, but I'm currently deep in the shit that is git branches when the repository is cloned with...
It seems that the paq file has changed locally and git does not want to pull. Try: ``` $ cd ${XDG_DATA_HOME:-~/.local/share}/nvim/site/pack/paqs/start/paq-nvim && git checkout -- . ``` And then run...