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 f605fc4c98a84af8d7b4d19d84fa715029eafffc

Fix trailing slash in merge overwrite dialog
The slash appeared in control message at the bottom.

Made a mistake of adding that slash in commit d320ea5c34:

Make slashes in response_variant explicit

There was some really dodgy code related to formatting of the control
message in msg_dialog.c, get rid of it and add separators explicitly.
Author: xaizek
Author date (UTC): 2025-03-25 17:53
Committer name: xaizek
Committer date (UTC): 2025-03-25 17:55
Parent(s): 3fed182babb903c9dfb7a7b47112cadd822e7b0c
Signing key: 99DC5E4DB05F6BE2
Tree: 15374d87b66764094d29dc8d9b656b5a2ae994ee
File Lines added Lines deleted
ChangeLog 3 0
src/ops.c 1 1
File ChangeLog changed (mode: 100644) (index b2329febd..9bf938960)
23 23 Fixed setting 'timeoutlen' to zero resulting in high CPU use and ignoring Fixed setting 'timeoutlen' to zero resulting in high CPU use and ignoring
24 24 user input. user input.
25 25
26 Fixed trailing slash at the bottom of overwrite confirmation dialog
27 displayed on merging directories.
28
26 29 0.14-beta to 0.14 (2025-02-08) 0.14-beta to 0.14 (2025-02-08)
27 30
28 31 Improved documentation on zh/zl menu keys a bit. Improved documentation on zh/zl menu keys a bit.
File src/ops.c changed (mode: 100644) (index f5d706362..c0aee4dcf)
... ... confirm_overwrite(io_args_t *args, const char src[], const char dst[])
1126 1126 { .key = 'y', .descr = "[y]es/", }, { .key = 'y', .descr = "[y]es/", },
1127 1127 { .key = 'Y', .descr = "[Y]es for all/", }, { .key = 'Y', .descr = "[Y]es for all/", },
1128 1128 { .key = 'n', .descr = "[n]o/", }, { .key = 'n', .descr = "[n]o/", },
1129 { .key = 'N', .descr = "[N]o for all/", },
1129 { .key = 'N', .descr = "[N]o for all", },
1130 1130 { }, { },
1131 1131 }; };
1132 1132
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