Skip to content

Commit 1eeb331

Browse files
committed
Transfer to hashicorp namespace
1 parent 6c65180 commit 1eeb331

10 files changed

+17
-23
lines changed

README.md

+1-7
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,7 @@ Experimental prototype of Terraform language server.
44

55
## Disclaimer
66

7-
If you found this repo via GitHub, there's likely nothing to see here for you, at least not yet.
8-
9-
This project is likely to change, move or disappear without prior notice.
10-
Expect no support or stability at this point.
11-
12-
The implementation is intentionally minimal just to initially see what's possible
13-
without having to import Terraform and tightly couple the LS with it.
7+
This is not an officially supported HashiCorp product.
148

159
## How to try it out
1610

completion_command.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ import (
1010
"strings"
1111

1212
"github.com/mitchellh/cli"
13-
fs "github.com/radeksimko/terraform-ls/internal/filesystem"
14-
"github.com/radeksimko/terraform-ls/internal/terraform/exec"
15-
"github.com/radeksimko/terraform-ls/internal/terraform/lang"
13+
fs "github.com/hashicorp/terraform-ls/internal/filesystem"
14+
"github.com/hashicorp/terraform-ls/internal/terraform/exec"
15+
"github.com/hashicorp/terraform-ls/internal/terraform/lang"
1616
lsp "github.com/sourcegraph/go-lsp"
1717
)
1818

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/radeksimko/terraform-ls
1+
module github.com/hashicorp/terraform-ls
22

33
go 1.13
44

internal/context/context.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ import (
77
"os"
88
"os/signal"
99

10-
"github.com/radeksimko/terraform-ls/internal/filesystem"
11-
"github.com/radeksimko/terraform-ls/internal/terraform/exec"
10+
"github.com/hashicorp/terraform-ls/internal/filesystem"
11+
"github.com/hashicorp/terraform-ls/internal/terraform/exec"
1212
)
1313

1414
func WithSignalCancel(ctx context.Context, l *log.Logger, sigs ...os.Signal) (

langserver/complete.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ import (
55
"fmt"
66
"time"
77

8-
lsctx "github.com/radeksimko/terraform-ls/internal/context"
9-
"github.com/radeksimko/terraform-ls/internal/terraform/lang"
8+
lsctx "github.com/hashicorp/terraform-ls/internal/context"
9+
"github.com/hashicorp/terraform-ls/internal/terraform/lang"
1010
lsp "github.com/sourcegraph/go-lsp"
1111
)
1212

langserver/did_change.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package langserver
33
import (
44
"context"
55

6-
lsctx "github.com/radeksimko/terraform-ls/internal/context"
6+
lsctx "github.com/hashicorp/terraform-ls/internal/context"
77
lsp "github.com/sourcegraph/go-lsp"
88
)
99

langserver/did_close.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package langserver
33
import (
44
"context"
55

6-
lsctx "github.com/radeksimko/terraform-ls/internal/context"
6+
lsctx "github.com/hashicorp/terraform-ls/internal/context"
77
lsp "github.com/sourcegraph/go-lsp"
88
)
99

langserver/did_open.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package langserver
33
import (
44
"context"
55

6-
lsctx "github.com/radeksimko/terraform-ls/internal/context"
6+
lsctx "github.com/hashicorp/terraform-ls/internal/context"
77
lsp "github.com/sourcegraph/go-lsp"
88
)
99

langserver/handler_map.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ import (
99
"github.com/creachadair/jrpc2"
1010
"github.com/creachadair/jrpc2/code"
1111
rpch "github.com/creachadair/jrpc2/handler"
12-
lsctx "github.com/radeksimko/terraform-ls/internal/context"
13-
"github.com/radeksimko/terraform-ls/internal/filesystem"
14-
"github.com/radeksimko/terraform-ls/internal/terraform/exec"
12+
lsctx "github.com/hashicorp/terraform-ls/internal/context"
13+
"github.com/hashicorp/terraform-ls/internal/filesystem"
14+
"github.com/hashicorp/terraform-ls/internal/terraform/exec"
1515
)
1616

1717
// logHandler provides handlers logger

serve_command.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ import (
99
"syscall"
1010

1111
"github.com/mitchellh/cli"
12-
lsctx "github.com/radeksimko/terraform-ls/internal/context"
13-
"github.com/radeksimko/terraform-ls/langserver"
12+
lsctx "github.com/hashicorp/terraform-ls/internal/context"
13+
"github.com/hashicorp/terraform-ls/langserver"
1414
)
1515

1616
type serveCommand struct {

0 commit comments

Comments
 (0)