Skip to content
Snippets Groups Projects
Commit 22ae7ada authored by Junegunn Choi's avatar Junegunn Choi
Browse files

Update completion for fzf itself

parent 36924d0b
No related branches found
No related tags found
No related merge requests found
......@@ -31,11 +31,11 @@ _fzf_opts_completion() {
--tiebreak
-m --multi
--no-mouse
+c --no-color
+2 --no-256
--color
--black
--reverse
--no-hscroll
--inline-info
--prompt
-q --query
-1 --select-1
......@@ -51,6 +51,10 @@ _fzf_opts_completion() {
COMPREPLY=( $(compgen -W "length begin end index" -- ${cur}) )
return 0
;;
--color)
COMPREPLY=( $(compgen -W "dark light 16 bw" -- ${cur}) )
return 0
;;
esac
if [[ ${cur} =~ ^-|\+ ]]; then
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment