Skip to content

Commit 24d9a29

Browse files
committed
fix(lsp): lithia lsp tcp didn't work as expected
1 parent bf36935 commit 24d9a29

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## v0.0.19-next
44

5+
- fix(lsp): `lithia lsp tcp` didn't work as expected
6+
57
## v0.0.18
68

79
- stdlib: `docs.docsToMarkup` now sorts extern properties

app/lithia/cmd/lsp.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ var lspTCPCmd = &cobra.Command{
7575
Short: `opens a tcp connection on the specified address. Make sure the port is free.`,
7676
Args: cobra.RangeArgs(0, 1),
7777
Run: func(cmd *cobra.Command, args []string) {
78-
err := langsrv.RunSocket(lspSocketAddress)
78+
err := langsrv.RunTCP(lspTCPAddress)
7979
if err != nil {
8080
panic(err)
8181
}

0 commit comments

Comments
 (0)