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 f6541ff41cce1c48caeef4895fee659dea152620

Fix off-by-one error in update_abs_and_rel_widths
Author: xaizek
Author date (UTC): 2015-07-09 15:57
Committer name: xaizek
Committer date (UTC): 2015-07-09 15:57
Parent(s): 2419141035091999df2f3cf5c0b8a4c4e8a66446
Signing key:
Tree: ec9c030c785606de2c84bf9ab7a41ccdfea16732
File Lines added Lines deleted
src/column_view.c 1 1
File src/column_view.c changed (mode: 100644) (index 3bf93924a..b5b835ed6)
... ... update_abs_and_rel_widths(columns_t cols, size_t *max_width)
539 539 if(auto_count == 0U && percent_count != 0U) if(auto_count == 0U && percent_count != 0U)
540 540 { {
541 541 int i; int i;
542 for(i = cols->count; i >= 0; --i)
542 for(i = cols->count - 1; i >= 0; --i)
543 543 { {
544 544 column_t *col = &cols->list[i]; column_t *col = &cols->list[i];
545 545 if(col->info.sizing == ST_PERCENT) if(col->info.sizing == ST_PERCENT)
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