From 4b3df5f2d72543369a0f97c05a6b441fef128bee Mon Sep 17 00:00:00 2001 From: declancm Date: Sat, 13 Jul 2024 16:32:38 +0000 Subject: [PATCH] chore(docs): auto-generate vimdoc --- doc/cinnamon.nvim.txt | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/doc/cinnamon.nvim.txt b/doc/cinnamon.nvim.txt index 728c339..08793ee 100644 --- a/doc/cinnamon.nvim.txt +++ b/doc/cinnamon.nvim.txt @@ -69,6 +69,12 @@ DEFAULT OPTIONS ~ callback = function() end, -- Delay between each movement step (in ms) delay = 5, + step_size = { + -- Default number of cursor/window lines moved per step + vertical = 1, + -- Default number of cursor/window columns moved per step + horizontal = 2, + }, max_delta = { -- Maximum distance for line movements before smooth -- scrolling is skipped. Set to `false` to disable @@ -76,7 +82,7 @@ DEFAULT OPTIONS ~ -- Maximum distance for column movements before smooth -- scrolling is skipped. Set to `false` to disable column = false, - -- Maximum duration for a movement (in ms). Automatically adjusts the step delay + -- Maximum duration for a movement (in ms). Automatically scales the delay and step size time = 1000, }, -- The scrolling mode