Skip to content

Commit 7703f85

Browse files
authored
Merge pull request #70 from reeflective/dev
Fix imports
2 parents 1da1001 + eb5e3a9 commit 7703f85

File tree

3 files changed

+7
-9
lines changed

3 files changed

+7
-9
lines changed

completer.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ package console
33
import (
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
}

go.mod

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,8 @@ go 1.23.6
44

55
require (
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

internal/completion/complete.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ import (
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
)

0 commit comments

Comments
 (0)