summaryrefslogtreecommitdiffstats
path: root/src
AgeCommit message (Collapse)Author
2022-05-30fix alt-enter failing to cd to directoryv1.13.1Canop
2022-05-21Merge remote-tracking branch 'origin/master'Canop
2022-05-21allow verbs with extension filter before other onesCanop
Verbs tried in order, the first ones may have extension filters and another one without filter would catch everything. Fix #552
2022-05-18Format counts of files with thousands separatorCanop
Fix #549
2022-05-16close staging area when a verb empties itCanop
(for example on :rm done in the SA)
2022-05-06version 1.12.0v1.12.0Canop
2022-05-04add the :stage_all_files internalCanop
Default mapping: ctrl-a
2022-04-03replace the 'opener' crate with 'open'Canop
Fix #530
2022-03-31Sort by type, with dirs either first or lastCanop
3 new internals. With `:st` you can select to sort by type with directories first, sort by type with directories last, or not sorting. Fix #467
2022-03-29Don't quit on small terminalsCanop
Fix #511
2022-03-27verb filtering by file extensionCanop
Fix #508
2022-03-27add the (already documented) capture_mouse conf itemCanop
See https://github.com/Canop/broot/issues/238
2022-03-23escape spaces in sourcing path in shell script installCanop
Fix #520 (hopefully, not really tested)
2022-03-07don't query size of remote volumesCanop
This prevents a temporary hang when running broot with size option or in filesystem state if a remote volume is unreachable.
2022-02-20mention rebinding :panel_left & :panel_right in docCanop
Fix #510
2022-02-15:previous_dir and :next_dir internalsCanop
Fix #502
2022-01-31keep selected line visible when resizing previewCanop
2022-01-31use crokey to clean keybinding related codeCanop
2022-01-30export key event parsing and formatting in crokeyCanop
This keys.rs file was copied into so many of my TUI applications, I had to make it a distinct crate.
2022-01-23clearer error on bad default_flags in conf fileCanop
Fix #483
2022-01-23fix git statuses not working for worktreesCanop
Fix #428
2022-01-22dump in log the launch commandCanop
This may (or not) help to diagnose #483
2022-01-21Fix a crash on a syntect panic on svelte fileCanop
fall back to unstyled when syntect crashes. This uses a temporary fork, which hopefully will disappear as soon as syntect 5 is usable.
2022-01-06determine when to draw/keep/erase kitty imagesCanop
Benefits: - fix background not erased - fix flickering - fix many redraws when computing sizes (or any background task)
2022-01-06fix offset in syntactic preview scrollbar displayCanop
2022-01-06change default bindings of Home and End keysCanop
There's now bound to :input_go_to_start and :input_go_to_end I did this to be consistent with the documentation but I had to remove their other bindings so users might want to restore them: They were previously bound to :select_first and :select_last Fix #475
2022-01-06fix syntaxic preview of Python broken by commentsCanop
Fix #477
2022-01-06Display images in high res on recent WezTermCanop
More specifically, this commit implements detection of recent enough WezTerm versions with the $TERM_PROGRAM and $TERM_PROGRAM_VERSION environment variables. Fix #473
2022-01-05images rendered with kitty protocol on weztermCanop
It's experimental and might be removed as wezterm doesn't seem to support image resizing
2021-12-31total_search shows all matchesCanop
This is experimental and might be reversed in a future version
2021-12-29fix wrong translation from exact pattern to regex patternv1.8.1Canop
Fix: regex pattern automatically built from content pattern when going from a tree search to a file preview isn't escaped Fix #472
2021-12-22text previews switch to hex when there are non printable charsCanop
2021-12-22alt-i and alt-h now toggle showing gitignored and hidden filesCanop
2021-11-30fix hex view sometimes losing 1 or 2 ASCII charactersCanop
2021-11-19fix some graphical glitches on WindowsCanop
2021-11-17add more syntect syntaxes for code previewCanop
Syntaxes come from the list maintained by the bat project. Fix #464
2021-11-07consider an input containing only spaces as empty on enterCanop
Previously, when typing a space to start a verb, not typing it, then typing enter to open, a 'verb "" not found' message was displayed. Now the space is just ignored.
2021-11-06upgrade terminal-clipboard to fix a problem on X11Canop
2021-10-29bunch of small improvements of clipboard & input fieldCanop
2021-10-22make it possible to rebind left and right arrow keysCanop
Fix #438
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-10-13Improve decision regarding trimming the rootCanop
When the user doesn't want root trimming, we won't trim even when a search is active. Fix #434 New decision process: 1. we never want to trim the root if there's a sort 2. if the user don't want root trimming, we don't trim 3. if there's a pattern, we try to show at least root matches 4. in other cases, as the user wants trimming, we trim
2021-10-13better make the selection visibleCanop
2021-10-01add more info in log about gitignore files parsingCanop
2021-09-26fix regression preventing cd on alt-enter in builtinCanop
2021-09-17fix special-path/Enter for sym linksCanop
Fix #448
2021-09-07addition to doc on `:focus`Canop
2021-09-05upgrade termimad to 0.16Canop
2021-08-29move some fit/crop utilities from broot's code to termimadCanop