We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9b09438 commit 5a128c5Copy full SHA for 5a128c5
internal/lsp/server.go
@@ -26,6 +26,7 @@ type Server struct {
26
// if the server stops unexpectedly.
27
func (s *Server) Run() error {
28
scanner := bufio.NewScanner(s.Reader)
29
+ scanner.Buffer(nil, 10*1024*1024)
30
scanner.Split(jsonrpc.Split)
31
32
log.Println("LSP server started")
0 commit comments