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

Improve menu_can_be_searched_interactively() test
Checking for "Compiled at:" won't work if configured with
--disable-build-timestamp option.
Author: xaizek
Author date (UTC): 2023-03-16 22:57
Committer name: xaizek
Committer date (UTC): 2023-03-16 22:59
Parent(s): 1500d98f84e2b649cada9ddb0874d0089200a246
Signing key: 99DC5E4DB05F6BE2
Tree: a74e54611420c319d1266f2693cb00381765b9bc
File Lines added Lines deleted
tests/menus/misc.c 2 2
File tests/menus/misc.c changed (mode: 100644) (index 73228a003..8c5b45366)
... ... TEST(menu_can_be_searched_interactively)
75 75 assert_success(cmds_dispatch("vifm", &lwin, CIT_COMMAND)); assert_success(cmds_dispatch("vifm", &lwin, CIT_COMMAND));
76 76 menu_data_t *menu = menu_get_current(); menu_data_t *menu = menu_get_current();
77 77
78 (void)vle_keys_exec_timed_out(L"/^Compiled at:");
79 assert_string_starts_with("Compiled at:", menu->items[menu->pos]);
78 (void)vle_keys_exec_timed_out(L"/^Git info:");
79 assert_string_starts_with("Git info:", menu->items[menu->pos]);
80 80 (void)vle_keys_exec_timed_out(WK_C_u L"^Version:"); (void)vle_keys_exec_timed_out(WK_C_u L"^Version:");
81 81 assert_string_starts_with("Version:", menu->items[menu->pos]); assert_string_starts_with("Version:", menu->items[menu->pos]);
82 82
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