Simon Paitrault
Simon Paitrault
For `NvChad` users you can fix this with : ```lua ["folke/todo-comments.nvim"] = { requires = {"nvim-lua/plenary.nvim"}, after = "base46", -- Fix the background issue config = function() require("todo-comments").setup {} end...
@Geal This refactoring is still needed? Do you have some more details to provide?
What kind of informations we need to display on this interface?
I just wanted to keep the dependencies free of another component that can be more heavy than just a little configuration :) But I can update the PR if needed.
any thoughts about this PR @simrat39 ?
I would like to have a way to remove variable from Environment before 1.0. something like: ```rust let env: Environment = vec![("foo", "bar"), ("bar", "baz")].into(); ... env.remove("foo"); ``` I would...
@epage yep that's looking better. Another question is: Macro style must expend to compile version? or not? ```rust inherit_env! { "bar" => "baz" } Becomes Environment::inherit().insert("bar", "baz").compile() or just Environment::inherit().insert("bar",...
@epage I like `extend_env`. I feel comfortable on keeping `with_env` to override the whole environment (we need to mention it somewhere) and `extend_env` to extend the environment with user variables.
@epage are you working on fixing this bug?