mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-05 11:57:43 +03:00
Add wbc and wbc! commands (#6947)
This commit is contained in:
parent
8424f387b5
commit
92c328c088
2 changed files with 48 additions and 2 deletions
|
@ -12,7 +12,9 @@
|
||||||
| `:buffer-next`, `:bn`, `:bnext` | Goto next buffer. |
|
| `:buffer-next`, `:bn`, `:bnext` | Goto next buffer. |
|
||||||
| `:buffer-previous`, `:bp`, `:bprev` | Goto previous buffer. |
|
| `:buffer-previous`, `:bp`, `:bprev` | Goto previous buffer. |
|
||||||
| `:write`, `:w` | Write changes to disk. Accepts an optional path (:write some/path.txt) |
|
| `:write`, `:w` | Write changes to disk. Accepts an optional path (:write some/path.txt) |
|
||||||
| `:write!`, `:w!` | Force write changes to disk creating necessary subdirectories. Accepts an optional path (:write some/path.txt) |
|
| `:write!`, `:w!` | Force write changes to disk creating necessary subdirectories. Accepts an optional path (:write! some/path.txt) |
|
||||||
|
| `:write-buffer-close`, `:wbc` | Write changes to disk and closes the buffer. Accepts an optional path (:write-buffer-close some/path.txt) |
|
||||||
|
| `:write-buffer-close!`, `:wbc!` | Force write changes to disk creating necessary subdirectories and closes the buffer. Accepts an optional path (:write-buffer-close! some/path.txt) |
|
||||||
| `:new`, `:n` | Create a new scratch buffer. |
|
| `:new`, `:n` | Create a new scratch buffer. |
|
||||||
| `:format`, `:fmt` | Format the file using the LSP formatter. |
|
| `:format`, `:fmt` | Format the file using the LSP formatter. |
|
||||||
| `:indent-style` | Set the indentation style for editing. ('t' for tabs or 1-8 for number of spaces.) |
|
| `:indent-style` | Set the indentation style for editing. ('t' for tabs or 1-8 for number of spaces.) |
|
||||||
|
|
|
@ -382,6 +382,36 @@ fn force_write(
|
||||||
write_impl(cx, args.first(), true)
|
write_impl(cx, args.first(), true)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fn write_buffer_close(
|
||||||
|
cx: &mut compositor::Context,
|
||||||
|
args: &[Cow<str>],
|
||||||
|
event: PromptEvent,
|
||||||
|
) -> anyhow::Result<()> {
|
||||||
|
if event != PromptEvent::Validate {
|
||||||
|
return Ok(());
|
||||||
|
}
|
||||||
|
|
||||||
|
write_impl(cx, args.first(), false)?;
|
||||||
|
|
||||||
|
let document_ids = buffer_gather_paths_impl(cx.editor, args);
|
||||||
|
buffer_close_by_ids_impl(cx, &document_ids, false)
|
||||||
|
}
|
||||||
|
|
||||||
|
fn force_write_buffer_close(
|
||||||
|
cx: &mut compositor::Context,
|
||||||
|
args: &[Cow<str>],
|
||||||
|
event: PromptEvent,
|
||||||
|
) -> anyhow::Result<()> {
|
||||||
|
if event != PromptEvent::Validate {
|
||||||
|
return Ok(());
|
||||||
|
}
|
||||||
|
|
||||||
|
write_impl(cx, args.first(), true)?;
|
||||||
|
|
||||||
|
let document_ids = buffer_gather_paths_impl(cx.editor, args);
|
||||||
|
buffer_close_by_ids_impl(cx, &document_ids, false)
|
||||||
|
}
|
||||||
|
|
||||||
fn new_file(
|
fn new_file(
|
||||||
cx: &mut compositor::Context,
|
cx: &mut compositor::Context,
|
||||||
_args: &[Cow<str>],
|
_args: &[Cow<str>],
|
||||||
|
@ -2287,10 +2317,24 @@ pub const TYPABLE_COMMAND_LIST: &[TypableCommand] = &[
|
||||||
TypableCommand {
|
TypableCommand {
|
||||||
name: "write!",
|
name: "write!",
|
||||||
aliases: &["w!"],
|
aliases: &["w!"],
|
||||||
doc: "Force write changes to disk creating necessary subdirectories. Accepts an optional path (:write some/path.txt)",
|
doc: "Force write changes to disk creating necessary subdirectories. Accepts an optional path (:write! some/path.txt)",
|
||||||
fun: force_write,
|
fun: force_write,
|
||||||
signature: CommandSignature::positional(&[completers::filename]),
|
signature: CommandSignature::positional(&[completers::filename]),
|
||||||
},
|
},
|
||||||
|
TypableCommand {
|
||||||
|
name: "write-buffer-close",
|
||||||
|
aliases: &["wbc"],
|
||||||
|
doc: "Write changes to disk and closes the buffer. Accepts an optional path (:write-buffer-close some/path.txt)",
|
||||||
|
fun: write_buffer_close,
|
||||||
|
signature: CommandSignature::positional(&[completers::filename]),
|
||||||
|
},
|
||||||
|
TypableCommand {
|
||||||
|
name: "write-buffer-close!",
|
||||||
|
aliases: &["wbc!"],
|
||||||
|
doc: "Force write changes to disk creating necessary subdirectories and closes the buffer. Accepts an optional path (:write-buffer-close! some/path.txt)",
|
||||||
|
fun: force_write_buffer_close,
|
||||||
|
signature: CommandSignature::positional(&[completers::filename]),
|
||||||
|
},
|
||||||
TypableCommand {
|
TypableCommand {
|
||||||
name: "new",
|
name: "new",
|
||||||
aliases: &["n"],
|
aliases: &["n"],
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue