mirror of
https://github.com/helix-editor/helix.git
synced 2024-11-22 09:26:19 +04:00
Add :mv
as an alias for :move
(#11256)
`mv` is the familiar shell command to move or rename a file. Add this to Helix as an alias for `:move`.
This commit is contained in:
parent
6c0a7f60eb
commit
70a9477ec8
@ -85,6 +85,6 @@
|
||||
| `:reset-diff-change`, `:diffget`, `:diffg` | Reset the diff change at the cursor position. |
|
||||
| `:clear-register` | Clear given register. If no argument is provided, clear all registers. |
|
||||
| `:redraw` | Clear and re-render the whole UI |
|
||||
| `:move` | Move the current buffer and its corresponding file to a different path |
|
||||
| `:move`, `:mv` | Move the current buffer and its corresponding file to a different path |
|
||||
| `:yank-diagnostic` | Yank diagnostic(s) under primary cursor to register, or clipboard by default |
|
||||
| `:read`, `:r` | Load a file into buffer |
|
||||
|
@ -3122,7 +3122,7 @@ fn read(cx: &mut compositor::Context, args: &[Cow<str>], event: PromptEvent) ->
|
||||
},
|
||||
TypableCommand {
|
||||
name: "move",
|
||||
aliases: &[],
|
||||
aliases: &["mv"],
|
||||
doc: "Move the current buffer and its corresponding file to a different path",
|
||||
fun: move_buffer,
|
||||
signature: CommandSignature::positional(&[completers::filename]),
|
||||
|
Loading…
Reference in New Issue
Block a user