From 27ad3f281c1e4bf5d5ee4f28a0ee917b932acc30 Mon Sep 17 00:00:00 2001 From: Nikita Revenco <154856872+NikitaRevenco@users.noreply.github.com> Date: Tue, 4 Mar 2025 12:20:58 +0000 Subject: [PATCH] feat: use arrow -> for Copy and Move instead of colon --- helix-term/src/ui/mod.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/helix-term/src/ui/mod.rs b/helix-term/src/ui/mod.rs index 9e3d8d517..45f26d33f 100644 --- a/helix-term/src/ui/mod.rs +++ b/helix-term/src/ui/mod.rs @@ -436,7 +436,7 @@ pub fn file_explorer( let create: KeyHandler = Box::new(|cx, (path, _), data, cursor| { create_file_operation_prompt( cursor, - |_| "create:".into(), + |_| "Create:".into(), cx, path, data, @@ -498,7 +498,7 @@ pub fn file_explorer( let move_: KeyHandler = Box::new(|cx, (path, _), data, cursor| { create_file_operation_prompt( cursor, - |path| format!("Move {} to:", path.display()), + |path| format!("Move {} -> ", path.display()), cx, path, data, @@ -595,7 +595,7 @@ pub fn file_explorer( let copy: KeyHandler = Box::new(|cx, (path, _), data, cursor| { create_file_operation_prompt( cursor, - |path| format!("Copy {} to:", path.display()), + |path| format!("Copy {} -> ", path.display()), cx, path, data,