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 75b69434d3d7e3b4e1918fdf37c3404685ce0db2

Fix quotes on calling vim help on `:help`
cmd.exe doesn't understand single quotes ("'"), so use double quotes
instead, which should work for all shells on all systems (there are no
special symbols inside).
Author: xaizek
Author date (UTC): 2013-05-06 08:34
Committer name: xaizek
Committer date (UTC): 2013-05-06 08:38
Parent(s): 4a3a7d0f562491189105025e8e7fd85de45102e4
Signing key:
Tree: 75588e63dea567aae4abe733ab22a45d0ddcfc60
File Lines added Lines deleted
ChangeLog 2 0
src/commands.c 1 1
File ChangeLog changed (mode: 100644) (index 539c2e051..1b75a1d8d)
28 28
29 29 Fixed potential issues pointed out by clang static analyzer. Fixed potential issues pointed out by clang static analyzer.
30 30
31 Fixed calling Vim on :help command without arguments on Windows.
32
31 33 0.7.4b to 0.7.5-beta 0.7.4b to 0.7.5-beta
32 34
33 35 Added Gentoo ebuild. Thanks to Oleg Gordienko (a.k.a. gordio). Added Gentoo ebuild. Thanks to Oleg Gordienko (a.k.a. gordio).
File src/commands.c changed (mode: 100644) (index 7ef23b1d3..517738812)
... ... help_cmd(const cmd_info_t *cmd_info)
2256 2256 } }
2257 2257 else else
2258 2258 { {
2259 snprintf(buf, sizeof(buf), "%s -c 'help vifm.txt' -c only",
2259 snprintf(buf, sizeof(buf), "%s -c \"help vifm.txt\" -c only",
2260 2260 get_vicmd(&bg)); get_vicmd(&bg));
2261 2261 } }
2262 2262 } }
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