Skip to content

Commit

Permalink
Merge branch 'main' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
kyoheiu committed Oct 23, 2023
2 parents f80685c + 7b9d7be commit 41819d9
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/help.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
/// Help text.
pub const HELP: &str = r###"# felix v2.9.0
pub const HELP: &str = concat!(
"# felix v",
env!("CARGO_PKG_VERSION"),
r###"
A simple TUI file manager with vim-like keymapping.
## Usage
Expand Down Expand Up @@ -105,4 +108,5 @@ trash directory : $PROFILE\\AppData\\Local\\felix\\trash
log files : $PROFILE\\AppData\\Local\\felix\\log
For more details, visit https://github.com/kyoheiu/felix
"###;
"###
);

0 comments on commit 41819d9

Please sign in to comment.