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 24e1a1734304ee04156c7987e72b38f3cd657b76

moves help and status to top for prompt-bottom
Author: pknowles
Author date (UTC): 2017-06-05 00:44
Committer name: pknowles
Committer date (UTC): 2017-06-05 02:25
Parent(s): 8ba606e32fbfd4f75fa006d40a4191883c01b4e0
Signing key:
Tree: 11a1de555dc73ee50b78cc5dfada1644e76011fd
File Lines added Lines deleted
src/hstr.c 2 2
File src/hstr.c changed (mode: 100644) (index cbe630e..a1cc66a)
... ... unsigned recalculate_max_history_items()
313 313 int bottom = getmaxy(stdscr) - 1; int bottom = getmaxy(stdscr) - 1;
314 314 if(hstr->promptBottom) { if(hstr->promptBottom) {
315 315 hstr->promptY = bottom--; hstr->promptY = bottom--;
316 hstr->promptYHelp = hstr->showHelp ? bottom-- : LABEL_DISABLED_Y;
317 hstr->promptYStatus = bottom--;
316 hstr->promptYHelp = hstr->showHelp ? top++ : LABEL_DISABLED_Y;
317 hstr->promptYStatus = top++;
318 318 } else { } else {
319 319 hstr->promptY = top++; hstr->promptY = top++;
320 320 hstr->promptYHelp = hstr->showHelp ? top++ : LABEL_DISABLED_Y; hstr->promptYHelp = hstr->showHelp ? top++ : LABEL_DISABLED_Y;
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