Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for temporarily disable auto plugin by check AUTO_LS_CHPWD #17

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 17 additions & 15 deletions auto-ls.zsh
Original file line number Diff line number Diff line change
Expand Up @@ -34,21 +34,23 @@ auto-ls () {
# 1. Called from `chpwd_functions` – show file list
# 2. Called by another ZLE plugin (like `dirhistory`) through `zle accept-line` – show file list
# 3. Called by ZLE itself – only should file list if prompt was empty
if ! zle \
|| { [[ ${WIDGET} != accept-line ]] && [[ ${LASTWIDGET} != .accept-line ]] }\
|| { [[ ${WIDGET} == accept-line ]] && [[ $#BUFFER -eq 0 ]] }; then
zle && echo
for cmd in $AUTO_LS_COMMANDS; do
# If we detect a command with full path, ex: /bin/ls execute it
if [[ $AUTO_LS_PATH != false && $cmd =~ '/' ]]; then
eval $cmd
else
# Otherwise run auto-ls function
auto-ls-$cmd
fi
done
zle && zle .accept-line
fi
if [[ ${AUTO_LS_CHPWD} == true ]]; then
if ! zle \
|| { [[ ${WIDGET} != accept-line ]] && [[ ${LASTWIDGET} != .accept-line ]] }\
|| { [[ ${WIDGET} == accept-line ]] && [[ $#BUFFER -eq 0 ]] }; then
zle && echo
for cmd in $AUTO_LS_COMMANDS; do
# If we detect a command with full path, ex: /bin/ls execute it
if [[ $AUTO_LS_PATH != false && $cmd =~ '/' ]]; then
eval $cmd
else
# Otherwise run auto-ls function
auto-ls-$cmd
fi
done
zle && zle .accept-line
fi
fi

# Forward this event down the ZLE stack
if zle; then
Expand Down