chrisant996 / clink-fzf

Fzf integration for Clink
MIT License
77 stars 10 forks source link

fixed 'cd **' command #7

Closed Nealium closed 1 year ago

Nealium commented 1 year ago

fzf_complete_internal was not passing the dirs_only boolean to fzf_recursive correctly, due to the parameter order.
This was leading to cd ** / FZF_COMPLETION_DIR_COMMANDS to return files instead of dirs.

I've added a hard coded false in place of the quote parameter, this fixes the issue while preserving the double quote closing.

Nealium commented 1 year ago

Done.

Yeah, I was wondering why quote was there!- I just assumed it was for some custom command not in the file or something