zsh-cwd-history
zsh-cwd-history copied to clipboard
Scopes your command history to the current working directory
Results
2
zsh-cwd-history issues
Sort by
recently updated
recently updated
newest added
Is it possible to save the whole history in a global (eg. ~/.zsh_history) file too? Like it done in /jimhester/per-directory-history.
How about a check ``` sh if [ -n "$$ZSH_CWD_HISTORY_DIR" ]; then export ZSH_CWD_HISTORY_DIR="$HOME/.zsh_cwd_history" fi ``` instead of the hardcoded ``` sh ZSH_CWD_HISTORY_DIR="$HOME/.zsh_cwd_history" ``` This allows ``` sh plugins+=(zsh-cwd-history) export...