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 d4aedcb38a5c65b89ad9a9a3905df789d9ce8fcd

Change strange '\"' to '"' in engine/options.c
Escaping isn't necessary there.
Author: xaizek
Author date (UTC): 2018-11-08 16:11
Committer name: xaizek
Committer date (UTC): 2018-11-08 16:11
Parent(s): fbebe155caea11890c9a969bbe4f9e61612ba2f7
Signing key: 99DC5E4DB05F6BE2
Tree: e01e5c4ea797b5faa67f27a73c4357867b95b297
File Lines added Lines deleted
src/engine/options.c 1 1
File src/engine/options.c changed (mode: 100644) (index a692a6269..6050aeb95)
... ... extract_option(const char **argsp, int replace)
1409 1409 char *opt = NULL; char *opt = NULL;
1410 1410 size_t opt_len = 0U; size_t opt_len = 0U;
1411 1411
1412 if(*args == '\"' && strchr(args + 1, '"') == NULL)
1412 if(*args == '"' && strchr(args + 1, '"') == NULL)
1413 1413 { {
1414 1414 /* This is a comment. */ /* This is a comment. */
1415 1415 *argsp = args + strlen(args); *argsp = args + strlen(args);
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