2018-08-11 14:48:25 +08:00
|
|
|
Configuration
|
2015-01-08 06:23:49 +08:00
|
|
|
=============
|
2015-02-13 16:19:36 +08:00
|
|
|
Get most of HSTR by configuring it with:
|
2015-01-08 05:36:50 +08:00
|
|
|
```bash
|
|
|
|
hh --show-configuration >> ~/.bashrc
|
|
|
|
```
|
2015-02-13 16:19:36 +08:00
|
|
|
Run `hh --show-configuration` to determine what will be appended to your Bash profile.
|
2015-01-08 05:36:50 +08:00
|
|
|
|
2015-03-01 01:00:20 +08:00
|
|
|
For more configuration options details please refer to:
|
2018-08-11 14:37:17 +08:00
|
|
|
|
2015-03-01 01:00:20 +08:00
|
|
|
* bind `hh` command to a [keyboard shortcut](#binding-hh-to-keyboard-shortcut)
|
|
|
|
* get more [colors](#colors)
|
|
|
|
* choose [default history view](#history-view)
|
2015-05-28 13:08:15 +08:00
|
|
|
* [command blacklist](#blacklist)
|
2018-02-08 20:10:45 +08:00
|
|
|
* disable [confirm on delete](#confirm-on-delete)
|
2015-03-01 01:00:20 +08:00
|
|
|
* [verbosity](#verbosity)
|
|
|
|
* [Bash history settings](#bash-history-settings)
|
|
|
|
* [zsh history settings](#zsh-history-settings)
|
|
|
|
|
|
|
|
Check also configuration [examples](#examples).
|
2015-01-08 06:23:49 +08:00
|
|
|
|
2018-08-11 14:48:25 +08:00
|
|
|
Binding HSTR to Keyboard Shortcut
|
2015-02-13 16:19:36 +08:00
|
|
|
---------------------------------
|
|
|
|
Bash uses *Emacs* style keyboard shortcuts by default. There is
|
|
|
|
also *Vi* mode. Find out how to bind HSTR to a keyboard shortcut
|
|
|
|
based on the style you prefer below.
|
|
|
|
|
|
|
|
Check your active Bash keymap with:
|
|
|
|
```bash
|
|
|
|
bind -v | grep editing-mode
|
|
|
|
bind -v | grep keymap
|
|
|
|
```
|
|
|
|
|
|
|
|
To determine character sequence emitted by a pressed key in
|
2015-05-28 12:57:50 +08:00
|
|
|
terminal, type <kbd>Ctrl-v</kbd> and then press the key. Check your
|
2015-02-13 16:19:36 +08:00
|
|
|
current bindings using:
|
|
|
|
```bash
|
|
|
|
bind -S
|
|
|
|
```
|
|
|
|
|
2018-08-11 14:48:25 +08:00
|
|
|
Bash Emacs Keymap (default)
|
|
|
|
---------------------------
|
2015-05-28 13:03:14 +08:00
|
|
|
Bind `hh` to a Bash key e.g. to <kbd>Ctrl-r</kbd>:
|
2015-01-08 05:36:50 +08:00
|
|
|
```bash
|
2016-09-27 14:42:01 +08:00
|
|
|
bind '"\C-r": "\C-ahh -- \C-j"'
|
2015-01-08 05:36:50 +08:00
|
|
|
```
|
2015-05-28 13:03:14 +08:00
|
|
|
or <kbd>Ctrl-Alt-r</kbd>:
|
2015-01-08 05:36:50 +08:00
|
|
|
```bash
|
2016-09-27 14:42:01 +08:00
|
|
|
bind '"\e\C-r":"\C-ahh -- \C-j"'
|
2015-01-08 05:36:50 +08:00
|
|
|
```
|
2015-05-28 13:03:14 +08:00
|
|
|
or <kbd>Ctrl-F12</kbd>:
|
2015-01-08 05:36:50 +08:00
|
|
|
```bash
|
2016-09-27 14:42:01 +08:00
|
|
|
bind '"\e[24;5~":"\C-ahh -- \C-j"'
|
2015-01-08 05:36:50 +08:00
|
|
|
```
|
2015-05-28 13:03:14 +08:00
|
|
|
Bind `hh` to <kbd>Ctrl-r</kbd> only if it is interactive shell:
|
2015-01-08 05:36:50 +08:00
|
|
|
```bash
|
2016-09-27 14:42:01 +08:00
|
|
|
if [[ $- =~ .*i.* ]]; then bind '"\C-r": "\C-a hh -- \C-j"'; fi
|
2015-01-08 05:36:50 +08:00
|
|
|
```
|
2018-02-21 16:06:00 +08:00
|
|
|
You can bind also other `hh` commands like `-kill-last-command`:
|
|
|
|
```bash
|
|
|
|
if [[ $- =~ .*i.* ]]; then bind '"\C-xk": "\C-a hh -k \C-j"'; fi
|
|
|
|
```
|
|
|
|
|
2018-08-11 14:48:25 +08:00
|
|
|
Bash Vim Keymap
|
|
|
|
---------------
|
2015-05-28 13:03:14 +08:00
|
|
|
Bind `hh` to a Bash key e.g. to <kbd>Ctrl-r</kbd>:
|
2015-01-08 05:36:50 +08:00
|
|
|
```bash
|
2018-07-29 11:23:14 +08:00
|
|
|
bind '"\C-r": "\e0ihh -- \C-j"'
|
2015-01-08 05:36:50 +08:00
|
|
|
```
|
|
|
|
|
2018-08-11 14:48:25 +08:00
|
|
|
Zsh Emacs Keymap (default)
|
|
|
|
--------------------------
|
2015-05-28 13:03:14 +08:00
|
|
|
Bind `hh` to a Zsh key e.g. to <kbd>Ctrl-r</kbd>:
|
2015-02-13 16:19:36 +08:00
|
|
|
```bash
|
2016-09-27 14:42:01 +08:00
|
|
|
bindkey -s "\C-r" "\eqhh --\n"
|
2015-02-13 16:19:36 +08:00
|
|
|
```
|
|
|
|
|
2018-08-11 14:48:25 +08:00
|
|
|
Colors
|
2015-01-08 06:23:49 +08:00
|
|
|
------
|
2015-01-08 05:36:50 +08:00
|
|
|
Get `hh` in more colors:
|
|
|
|
```bash
|
|
|
|
export HH_CONFIG=hicolor
|
|
|
|
```
|
2015-01-08 06:44:07 +08:00
|
|
|
or ensure black and white mode:
|
2015-01-08 06:23:49 +08:00
|
|
|
```bash
|
|
|
|
export HH_CONFIG=monochromatic
|
|
|
|
```
|
|
|
|
|
2018-08-11 14:48:25 +08:00
|
|
|
History View
|
2015-01-08 06:23:49 +08:00
|
|
|
------------
|
|
|
|
Show normal history by default (instead of metrics-based view):
|
2015-01-08 05:36:50 +08:00
|
|
|
```bash
|
|
|
|
export HH_CONFIG=rawhistory
|
|
|
|
```
|
2015-01-08 06:44:07 +08:00
|
|
|
Show favorite commands by default (instead of metrics-based view):
|
2015-01-08 05:36:50 +08:00
|
|
|
```bash
|
|
|
|
export HH_CONFIG=favorites
|
|
|
|
```
|
2015-01-08 06:23:49 +08:00
|
|
|
|
2018-08-11 14:48:25 +08:00
|
|
|
Filtering
|
2015-01-08 06:23:49 +08:00
|
|
|
---------
|
2015-01-08 06:44:07 +08:00
|
|
|
Make search case sensitive (insensitive by default):
|
2015-01-08 05:36:50 +08:00
|
|
|
```bash
|
|
|
|
export HH_CONFIG=casesensitive
|
|
|
|
```
|
2015-12-30 06:21:40 +08:00
|
|
|
Keep duplicates in `rawhistory` view (duplicates discarded by default):
|
|
|
|
```bash
|
|
|
|
export HH_CONFIG=duplicates
|
|
|
|
```
|
|
|
|
|
2018-08-11 14:48:25 +08:00
|
|
|
Blacklist
|
2015-05-28 13:08:15 +08:00
|
|
|
---------
|
|
|
|
Skip commands when processing history i.e. make sure that these commands
|
|
|
|
will *not* be shown in any view:
|
|
|
|
```bash
|
|
|
|
export HH_CONFIG=blacklist
|
|
|
|
```
|
|
|
|
Commands to be stored in `~/.hh_blacklist` file with trailing empty line. For instance:
|
|
|
|
```
|
|
|
|
cd
|
|
|
|
my-private-command
|
|
|
|
ls
|
|
|
|
ll
|
|
|
|
```
|
2018-08-11 14:48:25 +08:00
|
|
|
|
|
|
|
Confirm on Delete
|
2018-08-11 14:37:17 +08:00
|
|
|
-----------------
|
2018-02-08 20:10:45 +08:00
|
|
|
Do not prompt for confirmation when deleting history items:
|
|
|
|
```bash
|
|
|
|
export HH_CONFIG=noconfirm
|
|
|
|
```
|
|
|
|
|
2018-08-11 14:48:25 +08:00
|
|
|
Verbosity
|
2015-05-28 13:08:15 +08:00
|
|
|
---------
|
2018-02-21 16:06:00 +08:00
|
|
|
Show a message when deleting the last command from history:
|
|
|
|
```bash
|
|
|
|
export HH_CONFIG=verbose-kill
|
|
|
|
```
|
2015-01-08 06:44:07 +08:00
|
|
|
Show warnings:
|
2015-01-08 05:36:50 +08:00
|
|
|
```bash
|
|
|
|
export HH_CONFIG=warning
|
|
|
|
```
|
2015-01-08 06:44:07 +08:00
|
|
|
Show debug messages:
|
2015-01-08 05:36:50 +08:00
|
|
|
```bash
|
|
|
|
export HH_CONFIG=debug
|
|
|
|
```
|
2015-01-08 06:23:49 +08:00
|
|
|
|
2018-08-11 14:48:25 +08:00
|
|
|
Bash History Settings
|
2015-01-08 06:23:49 +08:00
|
|
|
---------------------
|
|
|
|
Use the following BASH settings to get most out of `hh`.
|
2015-01-08 05:36:50 +08:00
|
|
|
|
2015-01-13 22:57:31 +08:00
|
|
|
Increase the size of history maintained by BASH - variables defined below increase the
|
2015-01-08 06:44:07 +08:00
|
|
|
number of history items and history file size (default value is 500):
|
2015-01-08 05:36:50 +08:00
|
|
|
```bash
|
|
|
|
export HISTFILESIZE=10000
|
|
|
|
export HISTSIZE=${HISTFILESIZE}
|
|
|
|
```
|
2015-01-13 22:57:31 +08:00
|
|
|
Ensure syncing (flushing and reloading) of `.bash_history` with in-memory
|
2015-01-08 05:36:50 +08:00
|
|
|
history:
|
|
|
|
```bash
|
|
|
|
export PROMPT_COMMAND="history -a; history -n; ${PROMPT_COMMAND}"
|
|
|
|
```
|
|
|
|
|
2015-01-13 22:57:31 +08:00
|
|
|
Force appending of in-memory history to `.bash_history`
|
|
|
|
(instead of overwriting):
|
2015-01-08 05:36:50 +08:00
|
|
|
```bash
|
|
|
|
shopt -s histappend
|
|
|
|
```
|
|
|
|
|
|
|
|
Use leading space to hide commands from history:
|
|
|
|
```bash
|
|
|
|
export HISTCONTROL=ignorespace
|
|
|
|
```
|
|
|
|
Suitable for a sensitive information like passwords.
|
2015-01-13 22:57:31 +08:00
|
|
|
|
2018-08-11 14:48:25 +08:00
|
|
|
Zsh History Settings
|
2015-01-13 22:57:31 +08:00
|
|
|
--------------------
|
2015-01-14 05:59:12 +08:00
|
|
|
If you use `zsh`, set HISTFILE environment variable in ~/.zshrc:
|
2015-01-13 22:57:31 +08:00
|
|
|
|
|
|
|
```
|
|
|
|
export HISTFILE=~/.zsh_history
|
|
|
|
```
|
2015-03-01 01:00:20 +08:00
|
|
|
|
2018-08-11 14:48:25 +08:00
|
|
|
Examples
|
2015-03-01 01:00:20 +08:00
|
|
|
--------
|
|
|
|
More colors with case sensitive search of history:
|
|
|
|
```bash
|
|
|
|
export HH_CONFIG=hicolor,casesensitive
|
|
|
|
```
|
|
|
|
Favorite commands view in black and white:
|
|
|
|
```bash
|
|
|
|
export HH_CONFIG=favorites,monochromatic
|
|
|
|
```
|
|
|
|
Keywords based search in colors with debug mode verbosity:
|
|
|
|
```bash
|
|
|
|
export HH_CONFIG=keywords,hicolor,debug
|
|
|
|
```
|