./sysutils/broot, New way to see and navigate directory trees

[ CVSweb ] [ Homepage ] [ RSS ] [ Required by ] [ Add to tracker ]


Branch: CURRENT, Version: 1.44.2, Package name: broot-1.44.2, Maintainer: pin

A better way to navigate directories.
-Get an overview of a directory, even a big one
-Find a directory then cd to it
-Never lose track of file hierarchy while you search
-Manipulate your files
-Manage files with panels
-Preview files
-Apply a standard or personal shortcut to a file
-Replace ls (and its clones)
-Sort, see what takes space
-check git statuses


Master sites:

Filesize: 13735.792 KB

Version history: (Expand)


CVS history: (Expand)


   2024-10-22 20:57:36 by pin | Files touched by this commit (3) | Package updated
Log message:
sysutils/broot: update to 1.44.2

 - temp files created for kitty now erased on quitting or when too many of them \ 
have been written
 - no longer panics when launched with BROOT_LOG=debug but the broot.log file \ 
can't be created - Fix #951
 - fix user and group names displayed as "????" when coming from \ 
openldap - Fix #953
   2024-10-17 07:19:31 by pin | Files touched by this commit (3) | Package updated
Log message:
sysutils/broot: update to 1.44.1

v1.44.1 - 2024-10-16
 - fix wrong position of IMEs (input method editors) popup - thanks @xubaiwang - \ 
See #948
 - improve querying the terminal for capabilities (prevent some escape chars \ 
from leaking)
   2024-09-09 21:14:25 by pin | Files touched by this commit (3) | Package updated
Log message:
sysutils/broot: update to 1.44.0

v1.44.0 - 2024-09-07
 - :focus_staging_area_no_open internal, focus the staging area if it's already \ 
open, does nothing in other case - Fix #926
 - fix some composite patterns with several operators and no parenthesis
   2024-08-30 11:11:27 by pin | Files touched by this commit (3) | Package updated
Log message:
sysutils/broot: update to 1.43.0

v1.43.0 - 2024-08-30
 - 'Size' and 'Deletion date' columns in trash screen. This screen now supports \ 
the :toggle_date, :toggle_size, :sort_by_date, and :sort_by_size internals.
 - new :show internal make the provided path visible and selected, adding lines \ 
to the tree if necessary, does nothing if the provided path is not a descendant \ 
of the current tree root (this part may change depending on feedback) - Fix #936
   2024-08-18 13:57:47 by pin | Files touched by this commit (3) | Package updated
Log message:
sysutils/broot: update to 1.42.0

v1.42.0 - 2024-08-18

 - support of .ignore files with the same syntax than .gitignore. They have \ 
priority over .gitignore so that a personal .ignore file can override a shared \ 
.gitignore
   See https://dystroy.org/broot/tree_view/#hidden-ignored-files - Fix #613
 - :toggle_ignore internal, identical to :toggle_git_ignore, but with a clearer \ 
name so should be preferred
 - the panels verb filter now works in most contexts (it was previously only \ 
checked on key events)
 - many dependencies updated
   2024-08-04 15:01:13 by pin | Files touched by this commit (3) | Package updated
Log message:
sysutils/broot: update to 1.41.1

v1.41.1
    allow compilation with rustc 1.76 - Fix

v1.41.0
Major Feature: :search_again

ctrl-s now triggers :search_again which either

    brings back the last used search pattern, when no filtering pattern is active
    does a "total search" if a filtering pattern is active and the \ 
search wasn't complete

Major Feature: internals changing panel widths

    set_panel_width, taking as parameter the index of the panel and the desired width
    move_panel_divider, taking as parameter the index of the divider and the \ 
desired change
    ctrl-< is bound by default to :move_panel_divider 0 -1
    ctrl-> is bound by default to :move_panel_divider 0 1
    See http://dystroy.org/broot/panels/#resize-panels

Minor Changes:

    when git file infos are shown, and git ignored files aren't hidden, those \ 
files are flagged with a 'I' - Fix #916
    Remove .bak extension from content search exclusion list - Fix #915
    Update nerdfont and vscode icons - Thanks @jpaju
    {initial-root} verb argument
   2024-07-17 13:35:37 by pin | Files touched by this commit (3) | Package updated
Log message:
sysutils/broot: update to 1.40.0

Major Feature: preview transformers

You can now define preview transformers to be applied before preview.
They allow for example previewing PDF or Office files, or beautifying JSON files.
Edit the preview_transformers array in your conf.hjson file.
See https://dystroy.org/broot/conf_file/#preview

Fixes
 - fix search on root - Fix #904
 - fix some verb cycling problems - Fix #902
   2024-06-01 16:12:28 by pin | Files touched by this commit (3) | Package updated
Log message:
sysutils/broot: update to 1.39.0

v1.39.0 - 2024-05-31
 - :open_trash shows the content of the trash. Other new internals & verbs: \ 
:delete_trashed_file, :restore_trashed_file, :purge_trash - Fix #855
 - it's now possible to remove a default keybinding by defining a verb with no \ 
execution - Fix #632
 - fix build on Android - thanks @dead10ck