summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2015-07-23 00:58:20 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2015-07-23 00:58:20 +0900
commit51d84b18695a72cd340ea7c0dee1efb84f5db233 (patch)
tree251bdd7802f3e1401690f92228476c9e6ee19bca
parent13e040baee77d75736f9fbb53f269d5ddc97efb9 (diff)
[bash] Update fzf option completion
-rw-r--r--shell/completion.bash6
1 files changed, 4 insertions, 2 deletions
diff --git a/shell/completion.bash b/shell/completion.bash
index 1e03b073..abe3363c 100644
--- a/shell/completion.bash
+++ b/shell/completion.bash
@@ -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
;;