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 d4b8262466beeed9cf4ef21d68d78f342668744e

Fix OS X CI
update_window_lazy() crashes in tests.
Author: xaizek
Author date (UTC): 2025-08-23 08:57
Committer name: xaizek
Committer date (UTC): 2025-08-23 09:59
Parent(s): 3ab1b704853a2a13151fdf4bc2266b6421026446
Signing key: 99DC5E4DB05F6BE2
Tree: 220e031182ad8a21e6dafd0b24a4c1dcd0eb1825
File Lines added Lines deleted
src/ui/ui.c 6 3
File src/ui/ui.c changed (mode: 100644) (index 3e4baafa5..5113412a2)
... ... static void
1223 1223 update_window_lazy(WINDOW *win) update_window_lazy(WINDOW *win)
1224 1224 { {
1225 1225 touchwin(win); touchwin(win);
1226 /* Tell curses that it shouldn't assume that screen isn't messed up in any
1227 * way. */
1228 redrawwin(win);
1226 if(curr_stats.load_stage > 0)
1227 {
1228 /* Tell curses that it shouldn't assume that screen isn't messed up in any
1229 * way. */
1230 redrawwin(win);
1231 }
1229 1232 wnoutrefresh(win); wnoutrefresh(win);
1230 1233 } }
1231 1234
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