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 dad1d015a9dce3be1bca14b6ca4cf2610ff98ab7

Fix off-by-one error in view.c:find_next()
Didn't caused problems, but valgrind found it.
Author: xaizek
Author date (UTC): 2013-10-28 21:19
Committer name: xaizek
Committer date (UTC): 2013-10-28 21:55
Parent(s): ed356a46e184f60ec7fe0c002e1f48ede9256145
Signing key:
Tree: c6bc5e81e93c7204b9aedfe6dd62352c6deb3acc
File Lines added Lines deleted
src/modes/view.c 1 1
File src/modes/view.c changed (mode: 100644) (index d3ae85123..1a61eecec)
... ... find_next(void)
1201 1201 vl = vi->linev + 1; vl = vi->linev + 1;
1202 1202 l = vi->line; l = vi->line;
1203 1203
1204 if(l < vi->nlines && vl == vi->widths[l + 1][0])
1204 if(l < vi->nlines - 1 && vl == vi->widths[l + 1][0])
1205 1205 l++; l++;
1206 1206
1207 1207 for(i = 0; i <= vl - vi->widths[l][0]; i++) for(i = 0; i <= vl - vi->widths[l][0]; i++)
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