xaizek / vifm (License: GPLv2+) (since 2018-12-07)
Vifm is a file manager with curses interface, which provides Vi[m]-like environment for managing objects within file systems, extended with some useful ideas from mutt.
Commit 8af72875d9a4809fff7faa876ee2246227f6292f

Say "primary", not "default", in :colorscheme menu
Documentation and code uses "primary", so "default" is somewhat
misleading.
Author: xaizek
Author date (UTC): 2025-05-24 15:55
Committer name: xaizek
Committer date (UTC): 2025-05-24 15:56
Parent(s): ae010b8b7b4e3d9a52f2240d36dc3aa28ef355a1
Signing key: 99DC5E4DB05F6BE2
Tree: ba7e59bdad13014686a7e76f54508364c63b3822
File Lines added Lines deleted
ChangeLog 2 0
src/menus/colorscheme_menu.c 1 1
File ChangeLog changed (mode: 100644) (index 96424c275..484f38b2b)
23 23
24 24 Provided more details on file handlers and viewers in sample vifmrc files. Provided more details on file handlers and viewers in sample vifmrc files.
25 25
26 Say "primary" instead of "default" in the title of :colorscheme menu.
27
26 28 Fixed 'trashdir' with "%r" on BSD-like systems (those with getmntinfo() Fixed 'trashdir' with "%r" on BSD-like systems (those with getmntinfo()
27 29 instead of getmntent() API). The regression was apparently introduced in instead of getmntent() API). The regression was apparently introduced in
28 30 v0.9.1-beta. Thanks to sublimal. v0.9.1-beta. Thanks to sublimal.
File src/menus/colorscheme_menu.c changed (mode: 100644) (index 423bac54f..b57102438)
... ... int
37 37 show_colorschemes_menu(view_t *view) show_colorschemes_menu(view_t *view)
38 38 { {
39 39 static menu_data_t m; static menu_data_t m;
40 menus_init_data(&m, view, strdup("Choose the default Color Scheme"),
40 menus_init_data(&m, view, strdup("Choose the primary Color Scheme"),
41 41 strdup("No color schemes found")); strdup("No color schemes found"));
42 42 m.execute_handler = &execute_colorscheme_cb; m.execute_handler = &execute_colorscheme_cb;
43 43
Hints

Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://code.reversed.top/user/xaizek/vifm

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@code.reversed.top/user/xaizek/vifm

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a pull request:
... clone the repository ...
... make some changes and some commits ...
git push origin master