Commit e29caaa16d06eaa3488c2ac1705ea844b6d11592
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-30 07:38
Parent(s): 71d8a854f1834048d6e241431b76e81d5683b81a
Signing key: 99DC5E4DB05F6BE2
Tree: 3af604372aa8660f2de7cc718f5fbfb29a15ae52
File ChangeLog changed (mode: 100644) (index 78266dff4..eab72a678) |
2 |
2 |
|
|
3 |
3 |
Provided more details on file handlers and viewers in sample vifmrc files. |
Provided more details on file handlers and viewers in sample vifmrc files. |
4 |
4 |
|
|
|
5 |
|
Say "primary" instead of "default" in the title of :colorscheme menu. |
|
6 |
|
|
5 |
7 |
Fixed picking trash directory when rooted trash is included in 'trashdir' |
Fixed picking trash directory when rooted trash is included in 'trashdir' |
6 |
8 |
and root is writable. Regression in v0.14.2. |
and root is writable. Regression in v0.14.2. |
7 |
9 |
|
|
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 |
|
|