Cfg: finishing configuration keywords polishing #309

This commit is contained in:
Martin Dvorak 2018-08-22 10:00:14 +02:00
parent 3acd30149a
commit 9c18305e48
3 changed files with 6 additions and 6 deletions

View file

@ -152,7 +152,7 @@ ll
Do not prompt for confirmation when deleting history items:
```bash
export HH_CONFIG=noconfirm
export HH_CONFIG=no-confirm
```
## Verbosity
@ -266,7 +266,7 @@ export HISTFILE=~/.zsh_history
More colors with case sensitive search of history:
```bash
export HH_CONFIG=hicolor,casesensitive
export HH_CONFIG=hicolor,case-sensitive
```
Favorite commands view in black and white:

View file

@ -96,7 +96,7 @@ Configuration options:
\fIprompt-bottom\fR
Show prompt at the bottom of the screen (default is prompt at the top).
\fInoconfirm\fR
\fIno-confirm\fR
Do not ask for confirmation on a history entry delete (default is with confirmation).
\fIregexp-matching\fR
@ -108,7 +108,7 @@ Configuration options:
\fIkeywords-matching\fR
Filter command history using keywords - item matches if contains all keywords in pattern in any order (keywords match is default).
\fIcasesensitive\fR
\fIcase-sensitive\fR
Make history filtering case sensitive (it's case insensitive by default).
\fIraw-history-view\fR

View file

@ -74,11 +74,11 @@
#define HSTR_CONFIG_SKIP_FAVORITES_COMMENTS "skip-favorites-comments"
#define HSTR_CONFIG_FAVORITES "favorites-view"
#define HSTR_CONFIG_SORTING "raw-history-view"
#define HSTR_CONFIG_CASE "casesensitive"
#define HSTR_CONFIG_CASE "case-sensitive"
#define HSTR_CONFIG_REGEXP "regexp-matching"
#define HSTR_CONFIG_SUBSTRING "substring-matching"
#define HSTR_CONFIG_KEYWORDS "keywords-matching"
#define HSTR_CONFIG_NOCONFIRM "noconfirm"
#define HSTR_CONFIG_NOCONFIRM "no-confirm"
#define HSTR_CONFIG_VERBOSE_KILL "verbose-kill"
#define HSTR_CONFIG_PROMPT_BOTTOM "prompt-bottom"
#define HSTR_CONFIG_BLACKLIST "blacklist"