-
-
Notifications
You must be signed in to change notification settings - Fork 111
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 new tab completion feature #90
Conversation
tokens=(${(z)LBUFFER}) | ||
cmd=${tokens[1]} | ||
|
||
if [[ "$LBUFFER" =~ "^\ *cd$" ]]; then |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Awesome work, but this regular expression is too restrictive. In particular, it should not check for cd
but $ ENHANCD_COMMAND
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice catch!! I'll update those 👍 @Konfekt
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done 7f6dcf0
|
||
if [[ "$LBUFFER" =~ "^\ *cd$" ]]; then | ||
zle ${ENHANCD_COMPLETION_DEFAULT:-expand-or-complete} | ||
elif [ "$cmd" = cd ]; then |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same here, it should check for $ENHANCD_COMMAND
.
WHAT
Introduce tab completion by
$ENHANCD_FILTER
and it's inspired by changyuheng/zsh-interactive-cdWHY
To fix #87