-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Add option to toggle filter search mode while the app is running, the default shortcut is `Alt-f` (Github #59) - Added option to sort directory listing by creation and modification date in addition to the name. Can be changed with the `--sort` CLI option and with the default shortcut `Alt-s`. (Thanks @joshrdane, Github #64) - Added "normal search anywhere" search mode with the `--normal-search-anywhere` or `-N` CLI option. - The `--no-gap-search` option has been renamed to `--normal-search`. The old option will still work, but it will display a warning - Home / end (i.e. `CursorTop` / `CursorBottom`) now work also while searching - Bugfixes related to drawing (Github #65) - Fixed last character of rows not being drawn, both in the main screen and help screen (at least on some terminal emulators) - Fixed broken bolding in the help screen if the wrapping happens at `/` - Fixed broken highlighting if the last character of a symlink is matched in a search - Fixed drawing bug when info message is longer than the terminal window width - Improved scrolling / cursor position behavior in filter search mode - Fix footer not updating when pressing home / end
- Loading branch information
Showing
11 changed files
with
730 additions
and
221 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.2.0" | ||
version = "1.3.0" | ||
authors = ["Márton Gunyhó <[email protected]>"] | ||
edition = "2018" | ||
description = "Terminal file explorer" | ||
|
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.