File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -46,6 +46,7 @@ CHANGELOG
4646 (` SHIFT-DELETE ` )
4747- Added fish completion support (#4605 ) (@lalvarezt )
4848- zsh: Handle multi-line history selection (#4595 ) (@LangLangBart )
49+ - zsh: Fixed ` _fzf_compgen_{path,dir} ` to respect ` FZF_COMPLETION_{PATH,DIR}_OPTS ` (#4592 ) (@LangLangBart )
4950- Bug fixes
5051 - Fixed ` --preview-window follow ` not working correctly with wrapping (#3243 , #4258 )
5152 - Fixed symlinks to directories being returned as files (#4676 ) (@skk64 )
Original file line number Diff line number Diff line change @@ -204,12 +204,12 @@ __fzf_generic_path_completion() {
204204
205205_fzf_path_completion () {
206206 __fzf_generic_path_completion " $1 " " $2 " _fzf_compgen_path \
207- " -m" " " " "
207+ " ${FZF_COMPLETION_PATH_OPTS-} -m" " " " "
208208}
209209
210210_fzf_dir_completion () {
211211 __fzf_generic_path_completion " $1 " " $2 " _fzf_compgen_dir \
212- " " " /" " "
212+ " ${FZF_COMPLETION_DIR_OPTS-} " " /" " "
213213}
214214
215215_fzf_feed_fifo () {
You can’t perform that action at this time.
0 commit comments