summaryrefslogtreecommitdiffstats
path: root/src/help_content.rs
AgeCommit message (Collapse)Author
2020-03-30moved files aroundCanop
refactored, added a few mods into a less flat source structure.
2020-01-20minor code fmt changesCanop
2020-01-16improve style consistency of the help pageCanop
2020-01-10Replace up- and downward arrow symbols in helpPrzemek WesoĊ‚ek
The proposed symbols probably have much better font coverage (Unicode block in Basic Plane rather than in Supplementary one), at least on my systems.
2019-12-02verb invocation now optional in verb configurationCanop
so that a verb can be defined to just introduce a keyboard shortcut: [[verbs]] key = "alt-j" execution = ":line_down"
2019-11-27help page refactored using Termimad templatesCanop
and also the background of the help page is now cleared if the terminal size changed since last drawing
2019-11-03broot v0.10.0v0.10.0Canop
This version is based on crossterm 0.13 and termimad 0.7.1. Fix #25 Fix #70
2019-10-23move to the last versions of crossterm and termimadCanop
2019-09-18minor code cleaningCanop
2019-09-13allow configuration of keyboard keys for verb triggeringCanop
Fix #68
2019-07-19change the behavior of open and alt-open on standard filesCanop
The logic behind opening has changed to allow easier opening of files in non terminal applications without closing broot. **Old behavior:** - in case of enter or double-click - on a directory: open that directory, staying in broot - on a file: open the file, quitting broot - in case of alt-enter - on a directory: cd to that directory, quitting broot - on a file: cd to that file's parent directory, quitting broot **New behavior:** - in case of enter or double-click - on a directory: open that directory, staying in broot - on a file: open that file in default editor, not closing broot - in case of alt-enter - on a directory: cd to that directory, quitting broot - on a file: open that file in default editor, quitting broot
2019-06-20new toggle to display last modified date of filesCanop
2019-06-19max width on help screen, prettier on very wide screenCanop
2019-06-18help screen: verbs table now centeredCanop
2019-06-08configurable skin supported on help screen and in :print_tree screen outputv0.8.0Canop
also bump version to 0.8, as it's the first deployed version based on crossterm&termimad and having some kind of windows support
2019-06-06tree drawing now based on Display traitCanop
This made it easier to restore the print_tree feature (printing the tree to stdout or to a file)
2019-06-04termimad based help screenCanop