Skip to content

Commit 6bc784a

Browse files
committed
Change remaining sbtc to sbtn
1 parent 8ce423b commit 6bc784a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

client/completions/_sbtn

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#compdef sbtn
22

33
COMPLETE="--completions=${words[@]}"
4-
COMPLETIONS=($(sbtc --no-tab ${COMPLETE}))
4+
COMPLETIONS=($(sbtn --no-tab ${COMPLETE}))
55
_alternative 'arguments:custom arg:($COMPLETIONS)'

client/completions/sbtn.bash

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env bash
22

33
_do_sbtn_completions() {
4-
COMPREPLY=($(sbtc "--completions=${COMP_LINE}"))
4+
COMPREPLY=($(sbtn "--completions=${COMP_LINE}"))
55
}
66

77
complete -F _do_sbtn_completions sbtn

client/completions/sbtn.fish

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
function __sbtcomp
2-
sbtc --completions="$argv"
2+
sbtn --completions="$argv"
33
end
44
complete --command sbtn -f --arguments '(__sbtcomp (commandline -cp))'

0 commit comments

Comments
 (0)