File tree Expand file tree Collapse file tree 3 files changed +7
-9
lines changed
Expand file tree Collapse file tree 3 files changed +7
-9
lines changed Original file line number Diff line number Diff line change @@ -3,10 +3,10 @@ package console
33import (
44 "strings"
55
6+ "github.com/carapace-sh/carapace"
7+ "github.com/carapace-sh/carapace/pkg/style"
8+ completer "github.com/carapace-sh/carapace/pkg/x"
69 "github.com/reeflective/readline"
7- "github.com/rsteube/carapace"
8- "github.com/rsteube/carapace/pkg/style"
9- completer "github.com/rsteube/carapace/pkg/x"
1010
1111 "github.com/reeflective/console/internal/completion"
1212 "github.com/reeflective/console/internal/line"
@@ -131,7 +131,7 @@ func (c *Console) highlightSyntax(input []rune) string {
131131 done = append (done , remain ... )
132132
133133 // Join all words.
134- highlighted := strings .Join (done , "" )
134+ highlighted := strings .Join (done , "" )
135135
136136 return highlighted
137137}
Original file line number Diff line number Diff line change @@ -4,9 +4,8 @@ go 1.23.6
44
55require (
66 github.com/carapace-sh/carapace v1.7.1
7- github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc5
7+ github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51
88 github.com/reeflective/readline v1.1.3
9- github.com/rsteube/carapace v0.46.3-0.20231214181515-27e49f3c3b69
109 github.com/spf13/cobra v1.8.1
1110 github.com/spf13/pflag v1.0.6
1211 golang.org/x/exp v0.0.0-20250210185358-939b2ce775ac
@@ -17,7 +16,6 @@ require (
1716 github.com/carapace-sh/carapace-shlex v1.0.1 // indirect
1817 github.com/inconshreveable/mousetrap v1.1.0 // indirect
1918 github.com/rivo/uniseg v0.4.7 // indirect
20- github.com/rsteube/carapace-shlex v0.1.1 // indirect
2119 golang.org/x/sys v0.32.0 // indirect
2220 gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
2321 gopkg.in/yaml.v3 v3.0.1 // indirect
Original file line number Diff line number Diff line change 44 "fmt"
55 "os"
66
7- "github.com/rsteube /carapace/pkg/style"
8- "github.com/rsteube /carapace/pkg/xdg"
7+ "github.com/carapace-sh /carapace/pkg/style"
8+ "github.com/carapace-sh /carapace/pkg/xdg"
99 "github.com/spf13/cobra"
1010 "github.com/spf13/pflag"
1111)
You can’t perform that action at this time.
0 commit comments