mirror of https://github.com/helix-editor/helix
feat: use arrow -> for Copy and Move instead of colon
parent
e7d7f93d63
commit
27ad3f281c
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue