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 f79eee619452800b2511793f645bf82908b32136

Fix unused variable in vifmview_loadcustom()
Happens only when building with `-DNDEBUG`.
Author: xaizek
Author date (UTC): 2026-05-16 13:50
Committer name: xaizek
Committer date (UTC): 2026-05-30 13:56
Parent(s): f839240ce0771db6214aa769ae26dff414bc1bdc
Signing key: 99DC5E4DB05F6BE2
Tree: 08bbce0e252b12956edc3559bc8db3d1cfa656ec
File Lines added Lines deleted
src/lua/vifmview.c 4 2
File src/lua/vifmview.c changed (mode: 100644) (index f07e5fd75..c80559d16)
... ... VLUA_API(vifmview_loadcustom)(lua_State *lua)
590 590 lua_pop(lua, 1); lua_pop(lua, 1);
591 591 } }
592 592
593 int success = (flist_custom_finish(view, type, /*allow_empty=*/1) == 0);
594 assert(success && "With allow_empty, the call should always succeed.");
593 if(flist_custom_finish(view, type, /*allow_empty=*/1) != 0)
594 {
595 assert(0 && "With allow_empty, the call should always succeed.");
596 }
595 597
596 598 return 0; return 0;
597 599 } }
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