diff options
author | Omnikar | 2021-12-27 23:03:14 +0000 |
---|---|---|
committer | GitHub | 2021-12-27 23:03:14 +0000 |
commit | 5b69e9b46623f586cedcf42b0c43dbc5c1bf0eaf (patch) | |
tree | 03375eedce67e71841c9741fc9d51c9f6a631fab /helix-term | |
parent | a4641a8613bcbe4ad01d28d3d2a6f4509fef96a9 (diff) |
Fix indentation (#1387)
Diffstat (limited to 'helix-term')
-rw-r--r-- | helix-term/src/commands.rs | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/helix-term/src/commands.rs b/helix-term/src/commands.rs index 16a2cf35..04dd222b 100644 --- a/helix-term/src/commands.rs +++ b/helix-term/src/commands.rs @@ -2744,18 +2744,18 @@ pub mod cmd { completer: Some(completers::filename), }, TypableCommand { - name: "buffer-close", - aliases: &["bc", "bclose"], - doc: "Close the current buffer.", - fun: buffer_close, - completer: None, // FIXME: buffer completer + name: "buffer-close", + aliases: &["bc", "bclose"], + doc: "Close the current buffer.", + fun: buffer_close, + completer: None, // FIXME: buffer completer }, TypableCommand { - name: "buffer-close!", - aliases: &["bc!", "bclose!"], - doc: "Close the current buffer forcefully (ignoring unsaved changes).", - fun: force_buffer_close, - completer: None, // FIXME: buffer completer + name: "buffer-close!", + aliases: &["bc!", "bclose!"], + doc: "Close the current buffer forcefully (ignoring unsaved changes).", + fun: force_buffer_close, + completer: None, // FIXME: buffer completer }, TypableCommand { name: "write", |