Skip to content

Commit 91f4dcf

Browse files
committed
use double underscore prefix for consistency in the bash completion with the rest of the shell functions
1 parent 85d348a commit 91f4dcf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

etc/bash_completion.d/tykky_completion

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
_tykky_completions() {
1+
__tykky_completions() {
22
if [ "${#COMP_WORDS[@]}" == "2" ]; then
33
COMPREPLY=($(compgen -W "activate deactivate" "${COMP_WORDS[1]}"))
44
return
@@ -33,4 +33,4 @@ _tykky_completions() {
3333
return
3434
}
3535

36-
complete -F _tykky_completions tykky
36+
complete -F __tykky_completions tykky

0 commit comments

Comments
 (0)