supermaven-inc / supermaven-nvim

The official Neovim plugin for Supermaven
https://supermaven.com/
MIT License
279 stars 16 forks source link

feat(#55): support for `dot-repeat` #56

Open AlejandroSuero opened 3 weeks ago

AlejandroSuero commented 3 weeks ago

With these changes now with config.dot_repeat = true it will repeat the last accepted suggestion under the cursor using . in Normal Mode.

require("supermaven-nvim").setup({
  dot_repeat = true, -- default as false
})

Possible changes:


https://github.com/supermaven-inc/supermaven-nvim/assets/71392160/5cbfb92c-1e69-460c-9801-cde5f39a751b

Closes #55.