diff --git a/internal/lsp/general.go b/internal/lsp/general.go index c8b6b6b25c..dbc881c6d1 100644 --- a/internal/lsp/general.go +++ b/internal/lsp/general.go @@ -76,6 +76,9 @@ func (s *Server) initialize(ctx context.Context, params *protocol.InitializePara TextDocumentSync: &protocol.TextDocumentSyncOptions{ Change: s.textDocumentSyncKind, OpenClose: true, + Save: &protocol.SaveOptions{ + IncludeText: false, + }, }, TypeDefinitionProvider: true, Workspace: &struct {