summaryrefslogtreecommitdiffstats
path: root/Cargo.lock
AgeCommit message (Collapse)Author
2021-06-19Show symlinked files and dirs correctly (#72)DLFW
* Treat symlinks as normal files and dirs * Dirs are recognized as dirs no matter is they are a symlink (correct devicon) * Permission flags shown in the footer are the permissions of the target in case a symlink is selected * Size of a symlinked file is the size of the target * File display to be fixed: symlink arrow now just overrides the file size, but both need to be shown one after the other * Correctly show symlink arrow and file size next This commit includes quite some refactoring. The shortening of the left and right part of an entry in a dir list and the shortening of the file name are separated into functions which don't directly write to the buffer but just return strings. That way, they get testable and further enhancements like different line modes should be easier to implement. * fix review findings * better file name truncation File names are only truncated at grapheme border, while the width is calculated on the actual nuber of terminal cells. * more adequate test organization * more code structure
2021-06-09Add a "touch" command (#66)DLFW
* touch existing file works * touch can create files * bind key sequence "ft" to command ":touch " * fix: touch can touch new file in empty directory
2021-05-24add search_skim commandJeff Zhao
- This provides rudimentary support to search for files via skim
2021-05-13add support for rgb colorsJeff Zhao
2021-05-12update cargo lockPrince
2021-05-06move worker stuff to its own context structJeff Zhao
2021-04-29rework config structureJeff Zhao
- sort options is now nested under display options which holds a lot of previously general options - fix glob search not searching backwards
2021-04-25add support for glob file selectionJeff Zhao
- rename some command configurations
2021-03-06version bump 0.8.6Jeff Zhao
2021-02-02add borders supportJeff Zhao
2021-01-24add optional clipboard supportJeff Zhao
- make mouse support optional
2021-01-20cd with tilde expansionMatthew Blode
2020-12-30add resize notification support and preliminary mouse supportJiayi Zhao
- currently scroll is hardmapped to cursor_up and cursor_down
2020-12-26add support for trashing files instead of permanently deletingJiayi Zhao
2020-12-15update Cargo filesJiayi Zhao
2020-12-06version bump and code cleanup0.8.5Jiayi Zhao
2020-11-20update Cargo.lockJiayi Zhao
2020-10-08Added Devicon SupportAnas Saeed
2020-10-05add Cargo.lockJiayi Zhao
2019-03-30remove Cargo.lockJiayi Zhao
2019-02-25update Cargo.toml and Cargo.lockJiayi Zhao
2019-02-19temporary fix for unicode on rust 1.32Jiayi Zhao
2019-02-15Replace clap with structopt for argument parsingCaleb Bassi
- structopt is built on top of clap and provides a convenient layer for configuring cli args - it also comes built in with `-V, --version` and `-h, --help`
2019-02-02add wide ncursesJiayi Zhao
2019-01-31Update Cargo.lock after changing mime-detective dependencyCaleb Bassi
2019-01-31Remove Cargo.lock from .gitignoreCaleb Bassi
2018-07-15remove cargo.lockJiayi Zhao
2018-07-14move most code to joshuto.rsJiayi Zhao
- add preliminary support for config file
2018-07-12initial commitJiayi Zhao