Skip to content

Commit 29e0392

Browse files
committed
feat(config)!: shorten the delay option default value from 7ms to 5ms
1 parent 5416310 commit 29e0392

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ return {
6969
-- Optional post-movement callback
7070
callback = function() end,
7171
-- Delay between each movement step (in ms)
72-
delay = 7,
72+
delay = 5,
7373
max_delta = {
7474
-- Maximum distance for line movements before smooth
7575
-- scrolling is skipped. Set to `false` to disable

lua/cinnamon/config.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ local defaults = {
1111
---@class ScrollOptions
1212
options = {
1313
callback = nil, ---@type function?
14-
delay = 7, ---@type number
14+
delay = 5, ---@type number
1515
max_delta = {
1616
line = false, ---@type number | false
1717
column = false, ---@type number | false

0 commit comments

Comments
 (0)