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 new tab completion feature #90

Merged
merged 4 commits into from
May 27, 2019
Merged

Add new tab completion feature #90

merged 4 commits into from
May 27, 2019

Conversation

babarot
Copy link
Owner

@babarot babarot commented May 27, 2019

WHAT

Introduce tab completion by $ENHANCD_FILTER and it's inspired by changyuheng/zsh-interactive-cd

WHY

To fix #87

@babarot babarot merged commit 4029ddc into master May 27, 2019
@babarot babarot deleted the tab-completion branch May 27, 2019 12:04
tokens=(${(z)LBUFFER})
cmd=${tokens[1]}

if [[ "$LBUFFER" =~ "^\ *cd$" ]]; then
Copy link

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.

Copy link
Owner Author

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

Copy link
Owner Author

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
Copy link

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.

babarot added a commit that referenced this pull request Dec 11, 2019
this is pointed out in #90
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

cd not displaying filter results from fzf
2 participants