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 1728589c6a43c75e2b992126b030242887741167

Use existing path for parse_file_spec() Win test
There are checks for existence of a path now.
Author: xaizek
Author date (UTC): 2016-01-01 13:56
Committer name: xaizek
Committer date (UTC): 2016-01-01 13:56
Parent(s): 34695036565c890b15109a6f0149499cdbab87bc
Signing key:
Tree: 1c8971a97103cad85fb4f48332d1de892ec96593
File Lines added Lines deleted
tests/utils/parse_file_spec.c 2 2
File tests/utils/parse_file_spec.c changed (mode: 100644) (index 0e24e245b..fe2c9f5ae)
... ... TEST(colon_in_name_with_linenum)
181 181 TEST(win_absolute_path_without_linenum, IF(windows)) TEST(win_absolute_path_without_linenum, IF(windows))
182 182 { {
183 183 int line_num; int line_num;
184 char *const path = parse_file_spec("c:/home/user", &line_num);
184 char *const path = parse_file_spec(TEST_DATA_PATH, &line_num);
185 185
186 assert_string_equal("c:/home/user", path);
186 assert_string_equal(TEST_DATA_PATH, path);
187 187 assert_int_equal(DEFAULT_LINENUM, line_num); assert_int_equal(DEFAULT_LINENUM, line_num);
188 188
189 189 free(path); free(path);
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