fix(cmds): add `.` to :move docs for consistency;

pull/11093/head
5-pebbles 5 months ago
parent 10c025d354
commit c5bfef7f9a

@ -85,7 +85,7 @@
| `:reset-diff-change`, `:diffget`, `:diffg` | Reset the diff change at the cursor position. | | `: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. | | `:clear-register` | Clear given register. If no argument is provided, clear all registers. |
| `:redraw` | Clear and re-render the whole UI | | `:redraw` | Clear and re-render the whole UI |
| `:move` | Move the current buffer and its corresponding file to a different path | | `:move` | Move the current buffer and its corresponding file to a different path. |
| `:move!` | Force move the current buffer and its corresponding file to a different path, overwriting the destination. | | `:move!` | Force move the current buffer and its corresponding file to a different path, overwriting the destination. |
| `:yank-diagnostic` | Yank diagnostic(s) under primary cursor to register, or clipboard by default | | `:yank-diagnostic` | Yank diagnostic(s) under primary cursor to register, or clipboard by default |
| `:read`, `:r` | Load a file into buffer | | `:read`, `:r` | Load a file into buffer |

@ -3120,7 +3120,7 @@ pub const TYPABLE_COMMAND_LIST: &[TypableCommand] = &[
TypableCommand { TypableCommand {
name: "move", name: "move",
aliases: &[], aliases: &[],
doc: "Move the current buffer and its corresponding file to a different path", doc: "Move the current buffer and its corresponding file to a different path.",
fun: move_buffer, fun: move_buffer,
signature: CommandSignature::positional(&[completers::filename]), signature: CommandSignature::positional(&[completers::filename]),
}, },

Loading…
Cancel
Save