Drowning Cat
Drowning Cat
I believe [submode.nvim](https://github.com/pogyomo/submode.nvim) should override all "native mode" keymaps. Currently, I have an issue with [neo-tree](https://github.com/nvim-neo-tree/neo-tree.nvim) because its buffer keymap takes precedence over submode's keymaps. I can't even perform an...
@Saghen I think `cmp.select_next` should **not** override text selected with `cmp.select_next { auto_insert = true }`. https://github.com/user-attachments/assets/a4f9d5d2-371b-4711-88d9-aaab6b19103f
You could try using this binding: ```sh bindkey '^I' complete-word ``` By default zsh uses: ```sh bindkey '^I' expand-or-complete ```
I’m not sure if `mini.format` should be implemented as a module for formatting. It could instead be a module that fixes the behavior of the `gq` command. The main idea...
@githubxone ```lua { 'nvim-treesitter/nvim-treesitter', -- event = 'VeryLazy', -- Disable! build = ':TSUpdate', main = 'nvim-treesitter.configs', opts = {}, }, { 'HiPhish/rainbow-delimiters.nvim', lazy = false, main = 'rainbow-delimiters.setup', opts =...
Can't this be done simply by creating an `insert_curr` action?
If possible, it’d be great to add an undo point manually when an item is expanded. But that’s a whole other rabbit hole.
My bad. It doesn't work only for `insert_next` and `insert_prev`. I tried to create `insert_curr` by just copying `select_next`. On second thought, maybe it could be implemented for these actions...
Now we can do: ```lua opts = { keymap = { [''] = { function(cmp) if not cmp.is_visible() then return false -- Run fallback end cmp.select_next { auto_insert = true,...
Maybe: ```lua appearance = { kind_icons = { preset = 'vs-code', -- 'mini-icons' } } ```