diff options
author | Wayne Davison <wayned@users.sourceforge.net> | 2001-05-15 16:32:20 +0000 |
---|---|---|
committer | Wayne Davison <wayned@users.sourceforge.net> | 2001-05-15 16:32:20 +0000 |
commit | 90e59f2e74903a678b53ae2005d721d88d72187e (patch) | |
tree | 8113842d24fe0d9f133fb738e722259404f195f2 /Doc/Zsh | |
parent | b08c6d6e3954a313fa2573a5e9cafcf9b0a97d37 (diff) | |
download | zsh-90e59f2e74903a678b53ae2005d721d88d72187e.tar.gz zsh-90e59f2e74903a678b53ae2005d721d88d72187e.tar.xz zsh-90e59f2e74903a678b53ae2005d721d88d72187e.zip |
Mention how ignored history lines are not dropped immediately.
Diffstat (limited to 'Doc/Zsh')
-rw-r--r-- | Doc/Zsh/options.yo | 22 |
1 files changed, 16 insertions, 6 deletions
diff --git a/Doc/Zsh/options.yo b/Doc/Zsh/options.yo index 3d523e85c..46acb9bbd 100644 --- a/Doc/Zsh/options.yo +++ b/Doc/Zsh/options.yo @@ -544,18 +544,28 @@ if they are duplicates of the previous event. pindex(HIST_IGNORE_SPACE) cindex(history, ignoring spaces) item(tt(HIST_IGNORE_SPACE) (tt(-g)))( -Do not enter command lines into the history list -if the first character on the line is a space, or if one of -the expanded aliases contained a leading space. +Remove command lines from the history list when the first character on +the line is a space, or when one of the expanded aliases contains a +leading space. +Note that the command lingers in the internal history until the next +command is entered before it vanishes, allowing you to briefly reuse +or edit the line. If you want to make it vanish right away without +entering another command, type a space and press return. ) pindex(HIST_NO_FUNCTIONS) item(tt(HIST_NO_FUNCTIONS))( -Do not store function definitions in the history list. +Remove function definitions from the history list. +Note that the function lingers in the internal history until the next +command is entered before it vanishes, allowing you to briefly reuse +or edit the definition. ) pindex(HIST_NO_STORE) item(tt(HIST_NO_STORE))( -Remove the tt(history) (tt(fc -l)) command from -the history when invoked. +Remove the tt(history) (tt(fc -l)) command from the history list +when invoked. +Note that the command lingers in the internal history until the next +command is entered before it vanishes, allowing you to briefly reuse +or edit the line. ) pindex(HIST_REDUCE_BLANKS) item(tt(HIST_REDUCE_BLANKS))( |