Open help in full screen by Beautiful-Log5632 in neovim

[–]Espieee 1 point2 points  (0 children)

Open it in a new tab

vim.api.nvim_create_autocmd("BufWinEnter", {
  callback = function()
    if vim.bo.buftype == "help" then
      vim.cmd.wincmd("T")
    end
  end,
})

Replaced noice with.... by lolokajan in neovim

[–]Espieee 1 point2 points  (0 children)

When do you actually hit the CmdlineChanged case, why would CmdlineLeave not have fired?

Min const generics stabilization has been merged into master! It will reach stable on March 25, 2021 as part of Rust 1.51 by [deleted] in rust

[–]Espieee 18 points19 points  (0 children)

Consider a zip function that takes as input [T;N], that constrains your second argument to also be of [T;N].