-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The biggest new feature is the possibility to map custom keyboard shortcuts, using a syntax like `--map key-combination:action`. Other improvements: - Add keyboard mapping to select the folder under the cursor and exit immediately. The default keyboard shortcuts are `Alt-Enter` and `Ctrl-Space`. (Github #39) - Fix exiting with `ctrl-c` with `--mouse=on` (Github #45) - Update dependencies - Lots of small updates to readme
- Loading branch information
Showing
11 changed files
with
1,267 additions
and
382 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "tere" | ||
version = "1.1.0" | ||
version = "1.2.0" | ||
authors = ["Márton Gunyhó <[email protected]>"] | ||
edition = "2018" | ||
description = "Terminal file explorer" | ||
|
@@ -13,11 +13,14 @@ categories = ["command-line-utilities"] | |
[dependencies] | ||
crossterm = "0.24.0" | ||
dirs = "4.0.0" | ||
regex = "1.5.4" | ||
regex = "1.6.0" | ||
serde_json = "1.0" | ||
serde = { version = "1.0", features = ["rc"] } | ||
textwrap = "0.14" | ||
unicode-segmentation = "1.7" | ||
textwrap = "0.15" | ||
unicode-segmentation = "1.9" | ||
crokey = "0.5" | ||
strum_macros = "0.24" | ||
strum = { version = "0.24", features = ["derive"] } | ||
|
||
[dependencies.clap] | ||
version = "3" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.