diff options
| author | theprimeagain <the.primeagen@gmail.com> | 2026-02-08 19:19:50 -0700 |
|---|---|---|
| committer | theprimeagain <the.primeagen@gmail.com> | 2026-02-08 19:19:50 -0700 |
| commit | 3424c33c84964effeb4cf5ff2cb11e0b03a08e7f (patch) | |
| tree | a89ba2d99932c7169a36e3e7fe4c3c40edc9ee0c /lua/99/ops | |
| parent | 8baa8ee97fe87805ab200d0a53d949a2c5d636ac (diff) | |
| download | a4-3424c33c84964effeb4cf5ff2cb11e0b03a08e7f.tar.xz a4-3424c33c84964effeb4cf5ff2cb11e0b03a08e7f.zip | |
very experimental search feature
Diffstat (limited to 'lua/99/ops')
| -rw-r--r-- | lua/99/ops/throbber.lua | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/lua/99/ops/throbber.lua b/lua/99/ops/throbber.lua index 79cdbe1..b266a6b 100644 --- a/lua/99/ops/throbber.lua +++ b/lua/99/ops/throbber.lua @@ -33,8 +33,8 @@ local function ease_in_ease_out_cubic(percent) end end -local throb_time = 1000 -local cooldown_time = 500 +local throb_time = 1200 +local cooldown_time = 200 --- @class _99.Throbber --- @field start_time number @@ -58,7 +58,6 @@ function Throbber.new(cb) end function Throbber:_run() - print("throbbing", self.state) if self.state ~= "throbbing" and self.state ~= "cooldown" then return end @@ -74,7 +73,6 @@ function Throbber:_run() end self.cb(icon) - print("throbbing", self.state, icon) vim.defer_fn(function() self:_run() end, 75) |
