Skip to content

Commit 4ca3aca

Browse files
authored
Merge pull request #269 from carapace-sh/bridges-fix-inshellisense
bridges: fix inshellisense
2 parents eeced4b + 7cae500 commit 4ca3aca

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

pkg/bridges/bridges.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ func Bridges() map[string]string {
1717
m := Config()
1818
for _, bridge := range env.Bridges() {
1919
if f, ok := map[string]func() []string{
20-
"bash": Bash,
21-
"fish": Fish,
22-
"inshellisens": Inshellisense,
23-
"zsh": Zsh,
20+
"bash": Bash,
21+
"fish": Fish,
22+
"inshellisense": Inshellisense,
23+
"zsh": Zsh,
2424
}[bridge]; ok {
2525
for _, name := range f() {
2626
if _, ok := m[name]; !ok {

0 commit comments

Comments
 (0)