We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I recently updated and noticed that the style changes break things in neovim.
After reverting and trying to debug, it seems the change of yanil/<package> to yanil.<package>, is the problem.
yanil/<package>
yanil.<package>
diff --git a/lua/yanil.lua b/lua/yanil.lua index c2dc81d..8808131 100644 --- a/lua/yanil.lua +++ b/lua/yanil.lua @@ -1,9 +1,9 @@ -local git = require("yanil/git") -local devicons = require("yanil/devicons") +local git = require("yanil.git") +local devicons = require("yanil.devicons") local config = { - colors = require("yanil/colors"), - commands = require("yanil/commands"), + colors = require("yanil.colors"), + commands = require("yanil.commands"), } local M = {}
The text was updated successfully, but these errors were encountered:
Sorry for this breaking change. I revert this change.
The module structure was not well designed at the beginning. Module-scoped states were misused too much. I'm planning to refactor it.
Sorry, something went wrong.
No branches or pull requests
I recently updated and noticed that the style changes break things in neovim.
After reverting and trying to debug, it seems the change of
yanil/<package>
toyanil.<package>
, is the problem.The text was updated successfully, but these errors were encountered: