feat: use arrow -> for Copy and Move instead of colon

pull/12902/head
Nikita Revenco 2025-03-04 12:20:58 +00:00
parent e7d7f93d63
commit 27ad3f281c
1 changed files with 3 additions and 3 deletions

View File

@ -436,7 +436,7 @@ pub fn file_explorer(
let create: KeyHandler = Box::new(|cx, (path, _), data, cursor| { let create: KeyHandler = Box::new(|cx, (path, _), data, cursor| {
create_file_operation_prompt( create_file_operation_prompt(
cursor, cursor,
|_| "create:".into(), |_| "Create:".into(),
cx, cx,
path, path,
data, data,
@ -498,7 +498,7 @@ pub fn file_explorer(
let move_: KeyHandler = Box::new(|cx, (path, _), data, cursor| { let move_: KeyHandler = Box::new(|cx, (path, _), data, cursor| {
create_file_operation_prompt( create_file_operation_prompt(
cursor, cursor,
|path| format!("Move {} to:", path.display()), |path| format!("Move {} -> ", path.display()),
cx, cx,
path, path,
data, data,
@ -595,7 +595,7 @@ pub fn file_explorer(
let copy: KeyHandler = Box::new(|cx, (path, _), data, cursor| { let copy: KeyHandler = Box::new(|cx, (path, _), data, cursor| {
create_file_operation_prompt( create_file_operation_prompt(
cursor, cursor,
|path| format!("Copy {} to:", path.display()), |path| format!("Copy {} -> ", path.display()),
cx, cx,
path, path,
data, data,