Skip to content

Commit

Permalink
per-directory-history: update to latest version (0e090e8)
Browse files Browse the repository at this point in the history
  • Loading branch information
mcornella committed Mar 3, 2019
1 parent 9346154 commit 52afbf7
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions plugins/per-directory-history/per-directory-history.zsh
Expand Up @@ -26,7 +26,7 @@
#
# [1]: http://www.compbiome.com/2010/07/bash-per-directory-bash-history.html
# [2]: http://dieter.plaetinck.be/per_directory_bash
# [3]: https://www.zsh.org/mla/users/1997/msg00226.html
# [3]: http://www.zsh.org/mla/users/1997/msg00226.html
#
################################################################################
#
Expand Down Expand Up @@ -109,8 +109,13 @@ function _per-directory-history-change-directory() {
}

function _per-directory-history-addhistory() {
print -Sr -- "${1%%$'\n'}"
fc -p $_per_directory_history_directory
# respect hist_ignore_space
if [[ -o hist_ignore_space ]] && [[ "$1" == \ * ]]; then
true
else
print -Sr -- "${1%%$'\n'}"
fc -p $_per_directory_history_directory
fi
}


Expand Down

0 comments on commit 52afbf7

Please sign in to comment.