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 af82df1e4053307c6c713c13bfd738841975dac2

Stabilizing codebase.
Author: Martin Dvorak
Author date (UTC): 2017-06-11 12:35
Committer name: Martin Dvorak
Committer date (UTC): 2017-06-11 12:35
Parent(s): 4613e4ef628dfceb32ab06159d267ca756ed3bb2
Signing key:
Tree: dfabbbee7c4c647a03cc0a4faae60e76a855dac2
File Lines added Lines deleted
src/hstr.c 1 1
File src/hstr.c changed (mode: 100644) (index e94e7d2..2d12391)
... ... void hstr_on_exit(Hstr *hstr)
933 933 void signal_callback_handler_ctrl_c(int signum) void signal_callback_handler_ctrl_c(int signum)
934 934 { {
935 935 if(signum==SIGINT) { if(signum==SIGINT) {
936 hstr_curses_stop();
936 hstr_curses_stop(false);
937 937 hstr_on_exit(hstr); hstr_on_exit(hstr);
938 938 exit(signum); exit(signum);
939 939 } }
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