Skip to content

Commit 6c85838

Browse files
committed
Fix bash completion for the colour flag
1 parent f96c6ac commit 6c85838

File tree

1 file changed

+5
-0
lines changed
  • completions/bash

1 file changed

+5
-0
lines changed

completions/bash/exa

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,11 @@ _exa()
88
return
99
;;
1010

11+
--colour)
12+
COMPREPLY=( $( compgen -W 'always auto never' -- "$cur" ) )
13+
return
14+
;;
15+
1116
-L|--level)
1217
COMPREPLY=( $( compgen -W '{0..9}' -- "$cur" ) )
1318
return

0 commit comments

Comments
 (0)