Skip to content

Commit

Permalink
Cfg: finishing configuration keywords polishing #309
Browse files Browse the repository at this point in the history
  • Loading branch information
dvorka committed Aug 26, 2018
1 parent 7d6a6b0 commit aa7487f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions CONFIGURATION.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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:
Expand Down
4 changes: 2 additions & 2 deletions man/hstr.1
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
4 changes: 2 additions & 2 deletions src/hstr.c
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit aa7487f

Please sign in to comment.