zsh, up arrow only repeats unique commands?

21

5

I'm looking for a setting that will make it so that when i hit the up arrow, zsh shows commands i have recently edited. The catch is, i only want unique commands. Currently, if i type echo "hello world" 50 times, i have to press up arrow 50 times to get the command i used before typing the echo command. This is annoying to say the least.

Any thoughts on what setting i need to enable/disable?

Lee Olayvar

Posted 2011-04-20T01:50:04.623

Reputation: 353

Answers

25

HIST_IGNORE_ALL_DUPS will throw out all previous matches of the command, which can be confusing when using the history as a log of what you did later.

A closer fit to your needs is probably the HIST_IGNORE_DUPS or even the HIST_FIND_NO_DUPS option.

See man zshoptions | less -p History:

HIST_FIND_NO_DUPS: When searching for history entries in the line editor, do not display duplicates of a line previously found, even if the duplicates are not contiguous.

HIST_IGNORE_ALL_DUPS: If a new command line being added to the history list duplicates an older one, the older command is removed from the list (even if it is not the previous event).

HIST_IGNORE_DUPS: Do not enter command lines into the history list if they are duplicates of the previous event.

peth

Posted 2011-04-20T01:50:04.623

Reputation: 7 990

1HIST_FIND_NO_DUPS is a better answer than mine I think. – Mikel – 2011-04-20T21:27:40.650

3

I can't see any way to literally only do that, but if you set the HIST_IGNORE_ALL_DUPS option, only the most recent version of a command will be retained in history, giving you the same effect.

See man zshoptions for details.

Mikel

Posted 2011-04-20T01:50:04.623

Reputation: 7 890

Works great! Unless i am missing something, this is exactly what i wanted :) – Lee Olayvar – 2011-04-20T16:35:21.253