-
Notifications
You must be signed in to change notification settings - Fork 4
Breaking Changes
The :ProjectDelete
command has been reworked. If no args are given to the user command, the following popup will appear:
Otherwise, it's all the same.
a5c0904
:ProjectRecents
has been dropped.
For some God forsaken reason using :ProjectRecents
would somehow loop the program, freezing Neovim entirely.
I tried looking through all sorts of logs to no avail.
It was only the User Command itself, by the way. None of the underlying components that I could identify were responsible.
I'm bewildered, to say the least.
Since this is a SERIOUS issue, I had no other choice but to delete that user command.
Either way, recent projects will still show up when running :checkhealth project
.
The setup()
option for enabling logging has been reworked:
-- BEFORE
require('project').setup({
logging = true,
})
-- AFTER
require('project').setup({
log = {
enabled = true,
},
})
Due to issue #18 fzf-lua
integration is now enabled in setup()
.
Tip
See :h Project.Config.FzfLua
for more info.
<== Previous Entry | Index | Next Entry ==>