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 e425cd6d2c9fd0f04dfe2a1f90669cac8de40b24

fix(git): override items with the status `GG`, or else modified files show up with `GG` as well
Author: Steven Xu
Author date (UTC): 2026-04-15 09:16
Committer name: Steven Xu
Committer date (UTC): 2026-04-15 09:16
Parent(s): 3277ed0ef455e64aa842779b5ff1930a6c5cd858
Signing key:
Tree: c12768216c09545320872f8ba5d1987c1998ccef
File Lines added Lines deleted
data/plugins/git/statuses.lua 1 1
File data/plugins/git/statuses.lua changed (mode: 100644) (index b29c9c097..502069803)
... ... local function set_file_status(node, path, status, expires)
77 77 if slash == nil then if slash == nil then
78 78 -- a file removed from index appears twice: first as 'D ' then as '??', -- a file removed from index appears twice: first as 'D ' then as '??',
79 79 -- keep the first status -- keep the first status
80 if node.items[path] == nil then
80 if node.items[path] == nil or node.items[path] == 'GG' then
81 81 node.items[path] = status node.items[path] = status
82 82 update_dir_status(node, status) update_dir_status(node, status)
83 83 end end
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