xaizek / hstr (License: Apachev2) (since 2018-12-07)
Bash and Zsh shell history suggest box - easily view, navigate, search and manage your command history.
Commit d072e30063ac031393ebc214ac4aebf26e32afc9

Fixing processing of parameters from the command line that has been broken.
Author: Martin Dvorak
Author date (UTC): 2014-01-28 20:35
Committer name: Martin Dvorak
Committer date (UTC): 2014-01-28 20:35
Parent(s): 7014c1b2ed0390c10d0ef83a6b368f462b2a6769
Signing key:
Tree: b404460a915d87170cadb3fcaa907d67e8fd120b
File Lines added Lines deleted
dist/ubuntu-env.sh 4 4
src/hstr.c 2 3
File dist/ubuntu-env.sh changed (mode: 100755) (index d4e8fc9..9ad9170)
1 1 #!/bin/bash #!/bin/bash
2 2
3 export HHVERSION="1.7.1"
3 export HHVERSION="1.7.4"
4 4 export HHFULLVERSION=${HHVERSION}-0ubuntu1 export HHFULLVERSION=${HHVERSION}-0ubuntu1
5 5 export HH=hh_${HHVERSION} export HH=hh_${HHVERSION}
6 6 export HHRELEASE=hh_${HHFULLVERSION} export HHRELEASE=hh_${HHFULLVERSION}
 
... ... export HHBUILD=hstr-${NOW}
12 12 #export UBUNTUVERSION=raring #export UBUNTUVERSION=raring
13 13 export UBUNTUVERSION=saucy export UBUNTUVERSION=saucy
14 14
15 export HHBZRMSG="Fixing history management - exact match ensured."
15 export HHBZRMSG="Color version and env var configuration."
16 16
17 # - user email must be as in gpg i.e. (Dvorka) must present
18 # - hh_ must be with underscore
17 # - user email must be the same as in gpg i.e. (Dvorka) must present
18 # - hh_ must be with underscore (dh_make enforced)
19 19
20 20 # eof # eof
File src/hstr.c changed (mode: 100644) (index 18b3441..5b7396b)
... ... int main(int argc, char *argv[])
619 619 printf("%s", HELP_STRING); printf("%s", HELP_STRING);
620 620 return EXIT_SUCCESS; return EXIT_SUCCESS;
621 621 } }
622 } else {
623 assemble_cmdline(argc, argv);
624 hstr();
625 622 } }
623 assemble_cmdline(argc, argv);
624 hstr();
626 625 } else { } else {
627 626 cmdline[0]=0; cmdline[0]=0;
628 627 hstr(); hstr();
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/hstr

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@code.reversed.top/user/xaizek/hstr

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