hstr icon indicating copy to clipboard operation
hstr copied to clipboard

bash and zsh shell history suggest box - easily view, navigate, search and manage your command history.

Results 139 hstr issues
Sort by recently updated
recently updated
newest added

Possible duplicate of [#405 ](https://github.com/dvorka/hstr/issues/405) but it would be nice to have .hstr_favorites and .hstr_blacklist in $XDG_CONFIG_HOME/hstr in pursuit of a cleaner home directory. See http://standards.freedesktop.org/basedir-spec/basedir-spec-latest.html for the reference.

Hi, I am having trouble installing hstr on Ubuntu 20.04.5 LTS. Please see screenshot below. ![image](https://user-images.githubusercontent.com/45874523/188611927-921eefc2-5a99-4070-9533-ab7276ec1925.png)

```sh ~ hstr --version hstr version "2.5.0" (2021-12-13T22:00:00) ~ cat /etc/lsb-release DISTRIB_ID=Ubuntu DISTRIB_RELEASE=22.04 DISTRIB_CODENAME=jammy DISTRIB_DESCRIPTION="Ubuntu 22.04.3 LTS" ``` Steps to reproduce: launch hstr and press "Ctrl+/". GDB stacktrace (no debugging...

:finnadie: blocker

I have the following in .bashrc: ```bash if [[ $- == *i* ]]; then _hstrnotiocsti() { { READLINE_LINE="$( { &1 1>&3 3>&- )"; } 3>&1 READLINE_POINT=${#READLINE_LINE} } export HSTR_TIOCSTI=n export...

:rescue_worker_helmet: triage

There are several issues concerning this problem: https://github.com/dvorka/hstr/issues/478, https://github.com/dvorka/hstr/issues/485, https://github.com/dvorka/hstr/issues/486 The suggested bash snippets differ in all places: - https://github.com/dvorka/hstr/blob/master/test/sh/tiotcsi-function-bash.sh#L190-L194 - hstr --show-bash-config - man hstr (could be a debian/sid...

:rescue_worker_helmet: triage

Updated command as it's --show-configuration instead of --show-bash-configuration

correct bash configuration switch ```sh 130 mc@nether:~$ hstr --show-bash-configuration >> ~/.bashrc hstr: unrecognized option '--show-bash-configuration' mc@nether:~$ hstr --help Usage: hstr [option] [arg1] [arg2]... Shell history suggest box: --favorites -f ......

This is my `.bashrc` fragment relevant to `hstr`: ``` if [[ $- == *i* ]]; then _hstrnotiocsti() { { READLINE_LINE="$( { &1 1>&3 3>&- )"; } 3>&1 READLINE_POINT=${#READLINE_LINE} } export...

:beetle: bug
:feelsgood: high

Fixed multiple typos from doc shorcut -> shortcut interative -> interactive choosen -> chosen

I run bash in vi mode and I have the following lines in my `.bashrc`: ``` # if this is interactive shell, then bind hstr to Ctrl-r if [[ $-...