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 bbc50afca3c905d98aa551caa66f1d09897a7a59

Inverted ./configure script options.
Author: xaizek
Author date (UTC): 2011-05-27 20:02
Committer name: xaizek
Committer date (UTC): 2011-05-27 20:02
Parent(s): ff0236e60cac0d9a5c3d7d0c126ddd9ba996d214
Signing key:
Tree: 2656c1640a5686bfdaf9631add564ae68cb24e07
File Lines added Lines deleted
configure 5 5
configure.in 6 6
File configure changed (mode: 100755) (index 609466e34..c7672e7f8)
... ... Optional Features:
1371 1371 optimize for fast installation [default=yes] optimize for fast installation [default=yes]
1372 1372 --disable-libtool-lock avoid locking (might break parallel builds) --disable-libtool-lock avoid locking (might break parallel builds)
1373 1373 --disable-largefile omit support for large files --disable-largefile omit support for large files
1374 --enable-extended-keys enable extended keys (like arrows, home etc.).
1374 --disable-extended-keys disable extended keys (like arrows, home etc.).
1375 1375 Without it will be no delay after pressing escape Without it will be no delay after pressing escape
1376 [default=yes]
1377 --enable-compatibility-mode
1378 enable compatibility with previous versions of vifm
1379 (behaviour of dd and <tab>) [default=yes]
1376 [default=enabled]
1377 --disable-compatibility-mode
1378 disable compatibility with previous versions of vifm
1379 (behaviour of dd and <tab>) [default=enabled]
1380 1380
1381 1381 Optional Packages: Optional Packages:
1382 1382 --with-PACKAGE[=ARG] use PACKAGE [ARG=yes] --with-PACKAGE[=ARG] use PACKAGE [ARG=yes]
File configure.in changed (mode: 100644) (index 302765aa3..74407b592)
... ... dnl handle options
85 85
86 86 AC_ARG_ENABLE(extended_keys, AC_ARG_ENABLE(extended_keys,
87 87 AS_HELP_STRING( AS_HELP_STRING(
88 [--enable-extended-keys],
89 [enable extended keys (like arrows, home etc.). Without it will be no
90 delay after pressing escape @<:@default=yes@:>@ ]),
88 [--disable-extended-keys],
89 [disable extended keys (like arrows, home etc.). Without it will be no
90 delay after pressing escape @<:@default=enabled@:>@ ]),
91 91 [extended_keys=$enableval], [extended_keys=$enableval],
92 92 [extended_keys=yes]) [extended_keys=yes])
93 93
94 94 AC_ARG_ENABLE(compatibility_mode, AC_ARG_ENABLE(compatibility_mode,
95 95 AS_HELP_STRING( AS_HELP_STRING(
96 [--enable-compatibility-mode],
97 [enable compatibility with previous versions of vifm (behaviour of dd
98 and <tab>) @<:@default=yes@:>@ ]),
96 [--disable-compatibility-mode],
97 [disable compatibility with previous versions of vifm (behaviour of dd
98 and <tab>) @<:@default=enabled@:>@ ]),
99 99 [compatibility_mode=$enableval], [compatibility_mode=$enableval],
100 100 [compatibility_mode=yes]) [compatibility_mode=yes])
101 101
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