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| {
|
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,
|
||||||
|
|
Loading…
Reference in New Issue