m/fzf
1
0
mirror of https://github.com/junegunn/fzf.git synced 2025-11-16 23:33:39 -05:00

[bash] Update fzf option completion

This commit is contained in:
Junegunn Choi
2015-07-23 00:58:20 +09:00
parent 13e040baee
commit 51d84b1869

View File

@@ -48,7 +48,9 @@ _fzf_opts_completion() {
--sync
--cycle
--history
--history-size"
--history-size
--header-file
--header-lines"
case "${prev}" in
--tiebreak)
@@ -59,7 +61,7 @@ _fzf_opts_completion() {
COMPREPLY=( $(compgen -W "dark light 16 bw" -- ${cur}) )
return 0
;;
--history)
--history|--header-file)
COMPREPLY=()
return 0
;;