Tyler Miller
Tyler Miller
This also doesn't work: ```sh nvim --clean +"lua require('diffview').setup { commit_log_panel = { win_config = { winopts = { winblend = 10, } } } }" ```
Thanks for the heads-up! I will look into this soon. I haven't seen any deprecation messages yet, but I probably need to update my nvim installation. I saw this too,...
Mainly need to replace all `vim.fn.*` calls with their equivalents from `vim.*` (e.g. `vim.rpcnotify()`, `vim.json`) or `vim.uv.*` (e.g. for fs funcs, resolving symlinks, etc.). Or at least replace all `vim.fn.*`...
## Ideas and TODO - [ ] Tests - [ ] Types to catch invalid references before runtime (LSP) (e.g. implement types in palette files, make spec well-typed). The idea...
Actually, I'm not sure if this group is used for anything else? So we might be good. ```vimhelp *hl-EndOfBuffer* EndOfBuffer Filler lines (~) after the end of the buffer. By...
Also, FWIW I kinda preferred the old interface of using key/value assignments as opposed to using array indices now. It not only looked nicer and made more sense visually (i.e....
> the register function was simply removed with v3 so this is expected and not an issue This is false. `register()` has not been removed and is still defined. If...
> ```lua > vim.env.LAZY_STDPATH = ".repro" > load(vim.fn.system("curl -s https://raw.githubusercontent.com/folke/lazy.nvim/main/bootstrap.lua"))() > vim.g.mapleader = " " > > require("lazy.minit").repro({ > spec = { > { > "folke/which-key.nvim", > config = function()...
> Duplicating the keymap definitions like this is a poor solution, and is not a solution that I am willing to accept. This would be a step backwards compared to...
> `remap=true` and `noremap=false` are completely equivalent That's precisely my point. > I can't imagine that having been a default before the rewrite because it can have many bad side...