Declan Mullen
Declan Mullen
Now possible by using a command-line command or lua function
Hi! Sorry for taking so long to get to this! Do you get any error messages? What version of Neovim are you running? I've tried reproducing with your config and...
Should be fixed on the latest.
I have an example configuration as well as a packer installation example. Are you looking for a GIF or something that shows the plugin being used? Or are you wanting...
Added
Hi! Sorry I didn't get to this earlier, I've been busy with a new job. If you enable the extended keymaps in the plugin config you can have smooth scrolling...
Integration with flash.nvim is now possible with a config like this: ```lua local cinnamon = require('cinnamon') local flash = require('flash') local jump = require('flash.jump') cinnamon.setup() flash.setup({ action = function(match, state)...
I'll try and figure out a fix for this!
Are you getting any errors? Is it just the top of the file where pageup isnt working?
Ah found the issue. It wasn't scrolling at the top since fixed window scrolling was enabled for those keymaps. These keymaps should fix the issue: ```lua vim.keymap.set({ 'n', 'x' },...