@@ -303,36 +303,36 @@ func (ls *INOLanguageServer) InitializeReqFromIDE(ctx context.Context, logger js
303
303
ResolveProvider : false ,
304
304
CompletionItem : & lsp.CompletionItemOptions {},
305
305
},
306
- HoverProvider : & lsp.HoverOptions {},
307
- SignatureHelpProvider : & lsp.SignatureHelpOptions {
308
- TriggerCharacters : []string {"(" , "," },
309
- },
306
+ // HoverProvider: &lsp.HoverOptions{},
307
+ // SignatureHelpProvider: &lsp.SignatureHelpOptions{
308
+ // TriggerCharacters: []string{"(", ","},
309
+ // },
310
310
// DeclarationProvider: &lsp.DeclarationRegistrationOptions{},
311
- DefinitionProvider : & lsp.DefinitionOptions {},
311
+ // DefinitionProvider: &lsp.DefinitionOptions{},
312
312
// ImplementationProvider: &lsp.ImplementationRegistrationOptions{},
313
313
// ReferencesProvider: &lsp.ReferenceOptions{},
314
- DocumentHighlightProvider : & lsp.DocumentHighlightOptions {},
315
- DocumentSymbolProvider : & lsp.DocumentSymbolOptions {},
316
- CodeActionProvider : & lsp.CodeActionOptions {
317
- CodeActionKinds : []lsp.CodeActionKind {
318
- lsp .CodeActionKindQuickFix ,
319
- lsp .CodeActionKindRefactor ,
320
- "info" ,
321
- },
322
- },
314
+ // DocumentHighlightProvider: &lsp.DocumentHighlightOptions{},
315
+ DocumentSymbolProvider : & lsp.DocumentSymbolOptions {},
316
+ // CodeActionProvider: &lsp.CodeActionOptions{
317
+ // CodeActionKinds: []lsp.CodeActionKind{
318
+ // lsp.CodeActionKindQuickFix,
319
+ // lsp.CodeActionKindRefactor,
320
+ // "info",
321
+ // },
322
+ // },
323
323
// DocumentLinkProvider: &lsp.DocumentLinkOptions{ResolveProvider: false},
324
- DocumentFormattingProvider : & lsp.DocumentFormattingOptions {},
325
- DocumentRangeFormattingProvider : & lsp.DocumentRangeFormattingOptions {},
324
+ // DocumentFormattingProvider: &lsp.DocumentFormattingOptions{},
325
+ // DocumentRangeFormattingProvider: &lsp.DocumentRangeFormattingOptions{},
326
326
// SelectionRangeProvider: &lsp.SelectionRangeRegistrationOptions{},
327
- DocumentOnTypeFormattingProvider : & lsp.DocumentOnTypeFormattingOptions {
328
- FirstTriggerCharacter : "\n " ,
329
- },
327
+ // DocumentOnTypeFormattingProvider: &lsp.DocumentOnTypeFormattingOptions{
328
+ // FirstTriggerCharacter: "\n",
329
+ // },
330
330
RenameProvider : & lsp.RenameOptions {
331
331
// PrepareProvider: true,
332
332
},
333
- ExecuteCommandProvider : & lsp.ExecuteCommandOptions {
334
- Commands : []string {"clangd.applyFix" , "clangd.applyTweak" },
335
- },
333
+ // ExecuteCommandProvider: &lsp.ExecuteCommandOptions{
334
+ // Commands: []string{"clangd.applyFix", "clangd.applyTweak"},
335
+ // },
336
336
// SelectionRangeProvider: &lsp.SelectionRangeOptions{},
337
337
// CallHierarchyProvider: &lsp.CallHierarchyOptions{},
338
338
// SemanticTokensProvider: &lsp.SemanticTokensOptions{
@@ -350,7 +350,7 @@ func (ls *INOLanguageServer) InitializeReqFromIDE(ctx context.Context, logger js
350
350
// Delta: true,
351
351
// },
352
352
// },
353
- WorkspaceSymbolProvider : & lsp.WorkspaceSymbolOptions {},
353
+ // WorkspaceSymbolProvider: &lsp.WorkspaceSymbolOptions{},
354
354
},
355
355
ServerInfo : & lsp.InitializeResultServerInfo {
356
356
Name : "arduino-language-server" ,
0 commit comments