aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/interface-curses/curses-icons.c
AgeCommit message (Collapse)AuthorFilesLines
2024-11-18fixed some common typos: "ie." and "eg.", "ocur" instead of "occur"Robin Haberkorn1-1/+1
2024-09-26Git lexer: added support for TAG_EDITMSG and MERGE_MSGRobin Haberkorn1-1/+2
* Curses: "icons" have also been added
2024-09-25Curses: added "Git" icons for COMMIT_EDITMSG and git-rebase-todoRobin Haberkorn1-0/+2
2024-09-16Curses: added support for cool Unicode icons (refs #5)Robin Haberkorn1-0/+395
* 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.