aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/interface-curses/curses-icons.h
AgeCommit message (Collapse)AuthorFilesLines
2025-03-15Curses: use special ellipsis symbol instead of "..." when truncating stringsRobin Haberkorn1-5/+9
This requires Unicode icon support to be enabled via ED. The ellipsis symbol is shorter and more distinctive, allowing more of the original text to be preserved before truncation.
2025-01-13updated copyright to 2025Robin Haberkorn1-1/+1
2024-09-16Curses: added support for cool Unicode icons (refs #5)Robin Haberkorn1-0/+28
* Practically requires one of the "Nerd Font" fonts, so it's disabled by default. Add 0,512ED to the profile to enable them. * The new ED flag could be used to control Gtk icons as well, but they are left always-enabled for the time being. Is there any reason anybody would like to disable icons in Gtk? * The list of icons has been adapted and extended from exa: https://github.com/ogham/exa/blob/master/src/output/icons.rs * The icons are hardcoded as presorted lists, so we can binary search them. This could change in the future. If there is any demand, they could be made configurable via Q-Registers as well.