@@ -10,6 +10,7 @@ import (
10
10
"github.com/carapace-sh/carapace/internal/env"
11
11
"github.com/carapace-sh/carapace/internal/shell/bash"
12
12
"github.com/carapace-sh/carapace/internal/shell/bash_ble"
13
+ "github.com/carapace-sh/carapace/internal/shell/cmd_clink"
13
14
"github.com/carapace-sh/carapace/internal/shell/elvish"
14
15
"github.com/carapace-sh/carapace/internal/shell/export"
15
16
"github.com/carapace-sh/carapace/internal/shell/fish"
@@ -33,6 +34,7 @@ func Snippet(cmd *cobra.Command, shell string) (string, error) {
33
34
shellSnippets := map [string ]func (cmd * cobra.Command ) string {
34
35
"bash" : bash .Snippet ,
35
36
"bash-ble" : bash_ble .Snippet ,
37
+ "cmd-clink" : cmd_clink .Snippet ,
36
38
"export" : export .Snippet ,
37
39
"fish" : fish .Snippet ,
38
40
"elvish" : elvish .Snippet ,
@@ -60,6 +62,7 @@ func Value(shell string, value string, meta common.Meta, values common.RawValues
60
62
shellFuncs := map [string ]func (currentWord string , meta common.Meta , values common.RawValues ) string {
61
63
"bash" : bash .ActionRawValues ,
62
64
"bash-ble" : bash_ble .ActionRawValues ,
65
+ "cmd-clink" : cmd_clink .ActionRawValues ,
63
66
"fish" : fish .ActionRawValues ,
64
67
"elvish" : elvish .ActionRawValues ,
65
68
"export" : export .ActionRawValues ,
0 commit comments