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 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 |
|
|