summaryrefslogtreecommitdiffstats
path: root/src/help/help_content.rs
AgeCommit message (Collapse)Author
2022-07-05help: change conf file open hintCanop
2022-06-12improve search help according @vapniks suggestionCanop
2022-06-12add examples on search modes in help screenCanop
Fix #559
2022-02-15:previous_dir and :next_dir internalsCanop
Fix #502
2021-10-22mention sponsorship in docCanop
2021-10-20remove direct import of minimad crateCanop
because there's some bug I don't understand in crate resolution in the last versions of rust
2021-09-05upgrade termimad to 0.16Canop
2021-06-02make the number of threads used for file summing configurableCanop
Also replace lazy_static with once_cell
2021-05-20removed some `#[macro_use] extern crate`Canop
2020-12-11display the file(s) used for config loading in helpCanop
Until now, the path to the default file was displayed even when using a special file given as parameter
2020-10-04version 1.0.2v1.0.2Canop
2020-10-04list the search modes and their main prefix in helpCanop
2020-09-30on ctrl-w (:close_panel_cancel) close preview rather than appCanop
i.e. choose to close the preview instead of the non preview when there are only two panels left and one of them is the preview
2020-09-29list of verbs is now searchableCanop
2020-09-28help page lists optional features enabled at compilationCanop
2020-09-09ctrl-v now inserts the clipboard content in the inputCanop
when the "clipboard" feature is on. This behaviour may be mapped to another key, it's based on the new `:input_paste` verb
2020-06-26update help screen contentCanop
It was full of obsolete things...
2020-05-04internals can accept an argument. :focus does accept oneCanop
Both in input and in configuration. This allowed to remove the :focus_user_home and :focus_root internals. It's now possible to define a verb like ``` [[verbs]] key = "ctrl-h" invocation = "home" execution = ":focus ~/dev" ``` which can be called as ctrl-h, :home, but also :!home (in order to open the ~/dev directory in a new panel)
2020-05-01command/verb/apply refactoringCanop
* simpler, with immutable commands * more commands can be triggered by shortcuts * one can apply verbs to the input (using shortcuts)
2020-04-15refactor verbs for more type enforced sanityCanop
2020-04-14focus dir in new panel with tabCanop
The new panels feature is still a work in progress. With this commit also comes the start of a big verb refactoring.
2020-03-30moved files aroundCanop
refactored, added a few mods into a less flat source structure.