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 87487f1bd5f6727c3b4e2de944a8b451c143c969

Fix a typo in strnumcmp from sort.c
Author: xaizek
Author date (UTC): 2012-10-18 17:09
Committer name: xaizek
Committer date (UTC): 2012-10-18 17:09
Parent(s): 3f1c05f9f10e4c488ff4d948e341b3ded7603f24
Signing key:
Tree: 34178ece747553cec841f52fb488777c70ea3b99
File Lines added Lines deleted
src/sort.c 1 1
File src/sort.c changed (mode: 100644) (index 449d48d19..5de39bc3b)
... ... strnumcmp(const char s[], const char t[])
104 104 #else #else
105 105 const char *new_s = skip_all(s, '0'); const char *new_s = skip_all(s, '0');
106 106 const char *new_t = skip_all(t, '0'); const char *new_t = skip_all(t, '0');
107 if(new_s[0] == '\0' || new_t == '\0')
107 if(new_s[0] == '\0' || new_t[0] == '\0')
108 108 { {
109 109 return strverscmp(new_s, new_t); return strverscmp(new_s, new_t);
110 110 } }
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