From 2c0f6e026acb2ecfc1c39d617f47d024e404bb9d Mon Sep 17 00:00:00 2001 From: Marc Coquand Date: Thu, 30 May 2024 08:45:22 -0500 Subject: Input Prompt: Implement left and right arrow --- lib/headlines.ml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'lib/headlines.ml') diff --git a/lib/headlines.ml b/lib/headlines.ml index 3c94f12..b8303c0 100644 --- a/lib/headlines.ml +++ b/lib/headlines.ml @@ -115,7 +115,8 @@ let rec render | `Key (`ASCII 'o', []) -> let (input_state : Input_prompt.state) = { screen = img - ; user_input = "" + ; user_input_pre = "" + ; user_input_post = "" ; prompt = "EXPORT TO" ; on_enter = (fun path -> @@ -164,7 +165,8 @@ let rec render | `Key (`ASCII 's', []) -> let (input_state : Input_prompt.state) = { screen = img - ; user_input = "" + ; user_input_post = "" + ; user_input_pre = "" ; prompt = "REGEXP" ; on_enter = (fun tag -> @@ -199,7 +201,8 @@ let rec render let selected_file = Grep.execution_directory ^ "/" ^ selected_file in let (input_state : Input_prompt.state) = { screen = img - ; user_input = "" + ; user_input_post = "" + ; user_input_pre = "" ; prompt = "COMMAND" ; on_enter = (fun command -> -- cgit v1.2.3