diff options
author | plexom | 2022-07-01 09:27:32 +0000 |
---|---|---|
committer | GitHub | 2022-07-01 09:27:32 +0000 |
commit | f10b6f6ee2bbf4d6d9356e27be25b25bdb85b9cd (patch) | |
tree | d6a949fcd15c85b9a682edf8559ca821b7c0b340 /helix-term/src/main.rs | |
parent | 15d96c843aca5b87fde26faf6c556265402c32c1 (diff) |
adds --vsplit and --hsplit arguments (#2773)
* adds --vsplit and --hsplit arguments
* moved comment
* fixed lint (third time's a charm)
* changed vsplit and hsplit from two separate bools to type Option<Layout>, and some cleanup
Diffstat (limited to 'helix-term/src/main.rs')
-rw-r--r-- | helix-term/src/main.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/helix-term/src/main.rs b/helix-term/src/main.rs index 7b26fb11..eb186d78 100644 --- a/helix-term/src/main.rs +++ b/helix-term/src/main.rs @@ -67,6 +67,8 @@ FLAGS: -v Increases logging verbosity each use for up to 3 times (default file: {}) -V, --version Prints version information + --vsplit Splits all given files vertically into different windows + --hsplit Splits all given files horizontally into different windows ", env!("CARGO_PKG_NAME"), env!("VERSION_AND_GIT_HASH"), |