From a35388a9e112cbd89c6f2029b780f26157b9d683 Mon Sep 17 00:00:00 2001 From: Matt Paras Date: Sun, 15 Jun 2025 22:14:19 -0700 Subject: [PATCH] add return value for the inlay hints removal --- helix-term/src/commands/engine/steel.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/helix-term/src/commands/engine/steel.rs b/helix-term/src/commands/engine/steel.rs index 72a027c3b..2381bad82 100644 --- a/helix-term/src/commands/engine/steel.rs +++ b/helix-term/src/commands/engine/steel.rs @@ -5169,7 +5169,9 @@ pub fn remove_inlay_hint_by_id( doc.set_inlay_hints( view_id, DocumentInlayHints::empty_with_id(new_doc_inlay_hints_id), - ) + ); + + return Some(()); } return None;