summaryrefslogtreecommitdiffstats
path: root/shell
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2015-09-15 19:04:53 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2015-09-15 19:04:53 +0900
commit2022a3ad96f027e056e4fcce11fee0976db657d1 (patch)
treeea0d8c2f34c38577b994971c7a186760223210c9 /shell
parent65d9d416b4300e85304fd158d9df2f6272590849 (diff)
Replace --header-file with --header (#346)
and allow using --header and --header-lines at the same time. Close #346.
Diffstat (limited to 'shell')
-rw-r--r--shell/completion.bash4
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/completion.bash b/shell/completion.bash
index 63de5463..d7fdf26e 100644
--- a/shell/completion.bash
+++ b/shell/completion.bash
@@ -49,7 +49,7 @@ _fzf_opts_completion() {
--cycle
--history
--history-size
- --header-file
+ --header
--header-lines
--margin"
@@ -62,7 +62,7 @@ _fzf_opts_completion() {
COMPREPLY=( $(compgen -W "dark light 16 bw" -- ${cur}) )
return 0
;;
- --history|--header-file)
+ --history)
COMPREPLY=()
return 0
;;