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 3277ed0ef455e64aa842779b5ff1930a6c5cd858

fix(git): directory not under *Git* shows *Git* status
Author: xaizek
Author date (UTC): 2026-04-15 09:16
Committer name: Steven Xu
Committer date (UTC): 2026-04-15 09:16
Parent(s): 54e471c09ee0129aac1318321a50ec852184ce4f
Signing key:
Tree: 63d62c56dad2cf5b4c58b88959df29ccb8f5c4b0
File Lines added Lines deleted
data/plugins/git/statuses.lua 1 1
File data/plugins/git/statuses.lua changed (mode: 100644) (index eb11a4803..b29c9c097)
... ... function update_subdir(sub_at, path, node)
120 120 onexit = function(sub_job) onexit = function(sub_job)
121 121 local sub_status_all = sub_job:stdout():read('a') local sub_status_all = sub_job:stdout():read('a')
122 122 local status = sub_status_all == '' and 'GG' or sub_status_all:sub(1, 2) local status = sub_status_all == '' and 'GG' or sub_status_all:sub(1, 2)
123 set_file_status(node, path, status, node.expires)
123 node.items[path] = status
124 124 redraw() redraw()
125 125 end end
126 126 } }
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