summaryrefslogtreecommitdiff
path: root/lua/clever_f/feedback_service.lua
diff options
context:
space:
mode:
authorJackson Moore <jacksonmoore@tuta.io>2026-09-04 12:40:08 +0200
committerJackson Moore <jacksonmoore@tuta.io>2026-09-04 12:40:08 +0200
commit70a3f231cf4d8bf76c3c73584502d6a3977167b1 (patch)
tree546f189b56ebce29be848d3b1715de292572bcec /lua/clever_f/feedback_service.lua
parent450f71774898d6aba1818a92bfb5035237573d16 (diff)
Cancel finalized highlight timer
Diffstat (limited to 'lua/clever_f/feedback_service.lua')
-rw-r--r--lua/clever_f/feedback_service.lua9
1 files changed, 9 insertions, 0 deletions
diff --git a/lua/clever_f/feedback_service.lua b/lua/clever_f/feedback_service.lua
index c5c9fc8..6972d70 100644
--- a/lua/clever_f/feedback_service.lua
+++ b/lua/clever_f/feedback_service.lua
@@ -115,6 +115,7 @@ local function require_host(host)
or type(host.read_window) ~= "function"
or type(host.register_events) ~= "function"
or type(host.remove_event_registration) ~= "function"
+ or type(host.stop_timer) ~= "function"
or type(host.supports_cursor_presentation) ~= "function"
or type(host.suppress_cursor_presentation) ~= "function"
or type(host.restore_cursor_presentation) ~= "function"
@@ -499,11 +500,19 @@ local function release_finalizers(record, resources)
end
end
+local function release_highlight_timer(record, identity)
+ if identity == nil then
+ return false
+ end
+ return record.host:stop_timer(identity)
+end
+
function FeedbackService:full_finalize(window)
local record = service_records[self]
window = window or record.host:read_window()
local cleanup = record.transitions:FullFinalization(window)
release_finalizers(record, cleanup.finalizers)
+ release_highlight_timer(record, cleanup.highlight_timer)
release_target_overlays(record, cleanup.target_overlays)
record.owned_finalizer = nil
return cleanup