We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
lithia lsp tcp
1 parent bf36935 commit 24d9a29Copy full SHA for 24d9a29
CHANGELOG.md
@@ -2,6 +2,8 @@
2
3
## v0.0.19-next
4
5
+- fix(lsp): `lithia lsp tcp` didn't work as expected
6
+
7
## v0.0.18
8
9
- stdlib: `docs.docsToMarkup` now sorts extern properties
app/lithia/cmd/lsp.go
@@ -75,7 +75,7 @@ var lspTCPCmd = &cobra.Command{
75
Short: `opens a tcp connection on the specified address. Make sure the port is free.`,
76
Args: cobra.RangeArgs(0, 1),
77
Run: func(cmd *cobra.Command, args []string) {
78
- err := langsrv.RunSocket(lspSocketAddress)
+ err := langsrv.RunTCP(lspTCPAddress)
79
if err != nil {
80
panic(err)
81
}
0 commit comments