-
-
Notifications
You must be signed in to change notification settings - Fork 306
New issue
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
plugins/diffview: migrate to mkNeovimPlugin #2944
base: main
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This cannot pass the CI check :(
in | ||
lib.nixvim.neovim-plugin.mkNeovimPlugin { | ||
name = "diffview"; | ||
originalName = "diffview.nvim"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The arument originalName
is not here now, and this causes a build failure.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
originalName = "diffview.nvim"; | |
packPathName = "diffview.nvim"; |
LLM? 😝
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is the property name before I renamed it from originalName to packPathName
inherit (lib.nixvim) defaultNullOpts; | ||
inherit (lib) types; | ||
in | ||
lib.nixvim.neovim-plugin.mkNeovimPlugin { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This was renamed to:
lib.nixvim.neovim-plugin.mkNeovimPlugin { | |
lib.nixvim.plugins.mkNeovimPlugin { |
WIP just creating Pr so that I remember that this branch exists... don't remember where I stopped with it.