summaryrefslogtreecommitdiffstats
path: root/src
AgeCommit message (Collapse)Author
2022-07-01add ability to check whether a preview is outdatedJeff Zhao
2022-06-29cargo fmtJeff Zhao
2022-06-29rename TuiBackend to AppBackendJeff Zhao
- fix initial view not correctly offset
2022-06-28fix bulk_renameJeff Zhao
2022-06-28cargo fmtJeff Zhao
2022-06-27fix bulk_rename logic errorJeff Zhao
2022-06-27fix confirm_exit not workingJeff Zhao
2022-06-27rename 'vsplit' to 'hsplit'Jeff Zhao
2022-06-23fix open not opening filesJeff Zhao
2022-06-22Bump `ansi-to-tui` to `0.6` and remove `tui_old` (#179)Noah Too
`ansi-to-tui` 0.6 uses the latest `tui`
2022-06-22Add `flat` command (#177)Noah Too
* add `flat` command * fix bulk_rename command * fix `open_file` commands * update docs * fix errors found by clippy * fix errors found by clippy::unnecessary-to-owned * fix open and open_with commands * fix: crash on root dirs
2022-06-08update dependenciesJeff Zhao
2022-05-30fix some clippyJeff Zhao
2022-05-26add vsplit viewJeff Zhao
2022-05-26Merge branch 'main' of github.com:kamiyaa/joshutoJeff Zhao
2022-05-26split up keymaps into different modesJeff Zhao
2022-05-23Add GitHub workflow for Clippy (#173)Dany Marcoux
* Add GitHub workflow for Clippy Closes #158 * Fix errors found by clippy::needless-borrow https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow * Fix errors found by clippy::collapsible-else-if https://rust-lang.github.io/rust-clippy/master/index.html#collapsible_else_if * Fix error found by clippy::single-match https://rust-lang.github.io/rust-clippy/master/index.html#single_match
2022-05-14add multiple tui dependenciesJeff Zhao
- this should fix build
2022-05-04Merge branch 'main' into devJeff Zhao
2022-05-04remove stderr capture for zoxide interactiveJeff Zhao
2022-05-04cargo fmtJeff Zhao
2022-05-04add 'zoxide add' and parsing zoxide errorsJeff Zhao
2022-05-04move input.rs to process_event.rsJeff Zhao
2022-05-03add pbcopy to support macos file ops (#166)Ting Zhou
2022-05-03inform user how many files was selected when glob selectingJeff Zhao
2022-05-03add initial support for zoxideJeff Zhao
2022-04-22combine --output-dir and --choosefiles into a single argumentJeff Zhao
--output-file is used for all output by joshuto and can be specified what to output by: `quit --output-current-directory` `quit --output-selected-files`
2022-04-20add H, L and M vim actionsJeff Zhao
2022-04-17cargo fmtJeff Zhao
2022-04-17code cleanupJeff Zhao
2022-04-17track child processes and properly close them when completeJeff Zhao
2022-04-17Merge branch 'main' of github.com:kamiyaa/joshutoJeff Zhao
2022-04-14Use notify::RecommendedWatcher to simplify code and support BSD platforms (#165)unrelentingtech
Along with https://github.com/notify-rs/notify/pull/399 this fixes build on FreeBSD.
2022-04-10fix file preview showing a blank lineJeff Zhao
2022-04-09rename crude to raw again = =;Jeff Zhao
2022-04-09selected files now indented like rangerJeff Zhao
2022-04-09fix regular file styling not respecting theme config (#163)Jeff Zhao
- fix color not applying to entire row
2022-03-07fix file previews for no ansi colorsJeff Zhao
2022-03-05version bump 0.9.30.9.3Jeff Zhao
2022-03-05make ansi-to-tui optionalJeff Zhao
2022-03-05cargo fmtJeff Zhao
2022-03-05Fix for issue #151 (#154)Beethoven-n
* (src/config/theme/style.rs) Add hex parsing Consulted with a friend who knows Rust better than me and was able to implement a fix for https://github.com/kamiyaa/joshuto/issues/151 pretty quickly after that point * (src/config/theme/style.rs) Reimplement * (src/config/theme/style.rs) Reformat * (src/config/theme/style.rs) Add missing comma everything told me that `cargo fmt --all -- --check` would at least tell me about this error. what???
2022-03-02Try all options when opening files (#150)sushi-shi
2022-02-25Add reversed autocompletion (#145)sushi-shi
2022-02-24Fix clippy warnings (#144)sushi-shi
2022-02-24Move half page (#143)sushi-shi
* Add console shortcuts * Add support for proportional page movements
2022-02-24Add console shortcuts (#142)sushi-shi
2022-02-23Fix overflows in viewport (#141)sushi-shi
2022-02-23Add incremental search (#140)sushi-shi
2022-02-23Autocomplete first words as commands (#139)sushi-shi