From da48c8d276e53456f8783cf1ece513535caaa980 Mon Sep 17 00:00:00 2001 From: emrebener Date: Fri, 22 May 2026 05:32:00 +0100 Subject: [PATCH] feat(plugin): expose mouse_double_click_delay to Lua runtime --- yazi-plugin/src/runtime/runtime.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/yazi-plugin/src/runtime/runtime.rs b/yazi-plugin/src/runtime/runtime.rs index 757ec015..421b443f 100644 --- a/yazi-plugin/src/runtime/runtime.rs +++ b/yazi-plugin/src/runtime/runtime.rs @@ -70,6 +70,7 @@ fn mgr() -> Composer { b"show_symlink" => m.show_symlink.get().into_lua(lua)?, b"scrolloff" => m.scrolloff.get().into_lua(lua)?, b"mouse_events" => lua.to_value_with(&m.mouse_events, SER_OPT)?, + b"mouse_double_click_delay" => m.mouse_double_click_delay.get().into_lua(lua)?, _ => return Ok(Value::Nil), } .into_lua(lua)