├── .gitattributes ├── .github ├── mergify.yml └── workflows │ ├── format.yaml │ ├── haskell.yml │ └── nix.yaml ├── .gitignore ├── .hlint.yaml ├── CONTRIBUTING.md ├── README.md ├── cabal.project ├── default.nix ├── flake.lock ├── flake.nix ├── fourmolu.yaml ├── lsp-test ├── ChangeLog.md ├── LICENSE ├── README.md ├── bench │ └── SimpleBench.hs ├── example │ └── Test.hs ├── func-test │ └── FuncTest.hs ├── lsp-test.cabal ├── src │ └── Language │ │ └── LSP │ │ ├── Test.hs │ │ └── Test │ │ ├── Compat.hs │ │ ├── Decoding.hs │ │ ├── Exceptions.hs │ │ ├── Files.hs │ │ ├── Parsing.hs │ │ ├── Replay.hs │ │ ├── Server.hs │ │ └── Session.hs └── test │ ├── DummyServer.hs │ ├── Test.hs │ └── data │ ├── Error.hs │ ├── Format.hs │ ├── Rename.hs │ ├── documentSymbolFail │ ├── client.log │ ├── example │ │ └── Main.hs │ └── server.log │ ├── hie.yaml │ ├── refactor │ └── Main.hs │ ├── renameFail │ ├── Desktop │ │ └── simple.hs │ └── session.log │ └── renamePass │ ├── Desktop │ └── simple.hs │ └── session.log ├── lsp-types ├── .gitattributes ├── .golden │ ├── fullCaps │ │ └── golden │ └── oldCaps │ │ └── golden ├── ChangeLog.md ├── LICENSE ├── README.md ├── generated │ └── Language │ │ └── LSP │ │ └── Protocol │ │ └── Internal │ │ ├── Meta.hs │ │ ├── Method.hs │ │ ├── Types.hs │ │ └── Types │ │ ├── AnnotatedTextEdit.hs │ │ ├── ApplyWorkspaceEditParams.hs │ │ ├── ApplyWorkspaceEditResult.hs │ │ ├── BaseSymbolInformation.hs │ │ ├── CallHierarchyClientCapabilities.hs │ │ ├── CallHierarchyIncomingCall.hs │ │ ├── CallHierarchyIncomingCallsParams.hs │ │ ├── CallHierarchyItem.hs │ │ ├── CallHierarchyOptions.hs │ │ ├── CallHierarchyOutgoingCall.hs │ │ ├── CallHierarchyOutgoingCallsParams.hs │ │ ├── CallHierarchyPrepareParams.hs │ │ ├── CallHierarchyRegistrationOptions.hs │ │ ├── CancelParams.hs │ │ ├── ChangeAnnotation.hs │ │ ├── ChangeAnnotationIdentifier.hs │ │ ├── ChangeAnnotationsSupportOptions.hs │ │ ├── ClientCapabilities.hs │ │ ├── ClientCodeActionKindOptions.hs │ │ ├── ClientCodeActionLiteralOptions.hs │ │ ├── ClientCodeActionResolveOptions.hs │ │ ├── ClientCompletionItemInsertTextModeOptions.hs │ │ ├── ClientCompletionItemOptions.hs │ │ ├── ClientCompletionItemOptionsKind.hs │ │ ├── ClientCompletionItemResolveOptions.hs │ │ ├── ClientDiagnosticsTagOptions.hs │ │ ├── ClientFoldingRangeKindOptions.hs │ │ ├── ClientFoldingRangeOptions.hs │ │ ├── ClientInfo.hs │ │ ├── ClientInlayHintResolveOptions.hs │ │ ├── ClientSemanticTokensRequestFullDelta.hs │ │ ├── ClientSemanticTokensRequestOptions.hs │ │ ├── ClientShowMessageActionItemOptions.hs │ │ ├── ClientSignatureInformationOptions.hs │ │ ├── ClientSignatureParameterInformationOptions.hs │ │ ├── ClientSymbolKindOptions.hs │ │ ├── ClientSymbolResolveOptions.hs │ │ ├── ClientSymbolTagOptions.hs │ │ ├── CodeAction.hs │ │ ├── CodeActionClientCapabilities.hs │ │ ├── CodeActionContext.hs │ │ ├── CodeActionDisabled.hs │ │ ├── CodeActionKind.hs │ │ ├── CodeActionOptions.hs │ │ ├── CodeActionParams.hs │ │ ├── CodeActionRegistrationOptions.hs │ │ ├── CodeActionTriggerKind.hs │ │ ├── CodeDescription.hs │ │ ├── CodeLens.hs │ │ ├── CodeLensClientCapabilities.hs │ │ ├── CodeLensOptions.hs │ │ ├── CodeLensParams.hs │ │ ├── CodeLensRegistrationOptions.hs │ │ ├── CodeLensWorkspaceClientCapabilities.hs │ │ ├── Color.hs │ │ ├── ColorInformation.hs │ │ ├── ColorPresentation.hs │ │ ├── ColorPresentationParams.hs │ │ ├── Command.hs │ │ ├── CompletionClientCapabilities.hs │ │ ├── CompletionContext.hs │ │ ├── CompletionItem.hs │ │ ├── CompletionItemDefaults.hs │ │ ├── CompletionItemKind.hs │ │ ├── CompletionItemLabelDetails.hs │ │ ├── CompletionItemTag.hs │ │ ├── CompletionItemTagOptions.hs │ │ ├── CompletionList.hs │ │ ├── CompletionListCapabilities.hs │ │ ├── CompletionOptions.hs │ │ ├── CompletionParams.hs │ │ ├── CompletionRegistrationOptions.hs │ │ ├── CompletionTriggerKind.hs │ │ ├── ConfigurationItem.hs │ │ ├── ConfigurationParams.hs │ │ ├── CreateFile.hs │ │ ├── CreateFileOptions.hs │ │ ├── CreateFilesParams.hs │ │ ├── Declaration.hs │ │ ├── DeclarationClientCapabilities.hs │ │ ├── DeclarationLink.hs │ │ ├── DeclarationOptions.hs │ │ ├── DeclarationParams.hs │ │ ├── DeclarationRegistrationOptions.hs │ │ ├── Definition.hs │ │ ├── DefinitionClientCapabilities.hs │ │ ├── DefinitionLink.hs │ │ ├── DefinitionOptions.hs │ │ ├── DefinitionParams.hs │ │ ├── DefinitionRegistrationOptions.hs │ │ ├── DeleteFile.hs │ │ ├── DeleteFileOptions.hs │ │ ├── DeleteFilesParams.hs │ │ ├── Diagnostic.hs │ │ ├── DiagnosticClientCapabilities.hs │ │ ├── DiagnosticOptions.hs │ │ ├── DiagnosticRegistrationOptions.hs │ │ ├── DiagnosticRelatedInformation.hs │ │ ├── DiagnosticServerCancellationData.hs │ │ ├── DiagnosticSeverity.hs │ │ ├── DiagnosticTag.hs │ │ ├── DiagnosticWorkspaceClientCapabilities.hs │ │ ├── DidChangeConfigurationClientCapabilities.hs │ │ ├── DidChangeConfigurationParams.hs │ │ ├── DidChangeConfigurationRegistrationOptions.hs │ │ ├── DidChangeNotebookDocumentParams.hs │ │ ├── DidChangeTextDocumentParams.hs │ │ ├── DidChangeWatchedFilesClientCapabilities.hs │ │ ├── DidChangeWatchedFilesParams.hs │ │ ├── DidChangeWatchedFilesRegistrationOptions.hs │ │ ├── DidChangeWorkspaceFoldersParams.hs │ │ ├── DidCloseNotebookDocumentParams.hs │ │ ├── DidCloseTextDocumentParams.hs │ │ ├── DidOpenNotebookDocumentParams.hs │ │ ├── DidOpenTextDocumentParams.hs │ │ ├── DidSaveNotebookDocumentParams.hs │ │ ├── DidSaveTextDocumentParams.hs │ │ ├── DocumentColorClientCapabilities.hs │ │ ├── DocumentColorOptions.hs │ │ ├── DocumentColorParams.hs │ │ ├── DocumentColorRegistrationOptions.hs │ │ ├── DocumentDiagnosticParams.hs │ │ ├── DocumentDiagnosticReport.hs │ │ ├── DocumentDiagnosticReportKind.hs │ │ ├── DocumentDiagnosticReportPartialResult.hs │ │ ├── DocumentFilter.hs │ │ ├── DocumentFormattingClientCapabilities.hs │ │ ├── DocumentFormattingOptions.hs │ │ ├── DocumentFormattingParams.hs │ │ ├── DocumentFormattingRegistrationOptions.hs │ │ ├── DocumentHighlight.hs │ │ ├── DocumentHighlightClientCapabilities.hs │ │ ├── DocumentHighlightKind.hs │ │ ├── DocumentHighlightOptions.hs │ │ ├── DocumentHighlightParams.hs │ │ ├── DocumentHighlightRegistrationOptions.hs │ │ ├── DocumentLink.hs │ │ ├── DocumentLinkClientCapabilities.hs │ │ ├── DocumentLinkOptions.hs │ │ ├── DocumentLinkParams.hs │ │ ├── DocumentLinkRegistrationOptions.hs │ │ ├── DocumentOnTypeFormattingClientCapabilities.hs │ │ ├── DocumentOnTypeFormattingOptions.hs │ │ ├── DocumentOnTypeFormattingParams.hs │ │ ├── DocumentOnTypeFormattingRegistrationOptions.hs │ │ ├── DocumentRangeFormattingClientCapabilities.hs │ │ ├── DocumentRangeFormattingOptions.hs │ │ ├── DocumentRangeFormattingParams.hs │ │ ├── DocumentRangeFormattingRegistrationOptions.hs │ │ ├── DocumentSelector.hs │ │ ├── DocumentSymbol.hs │ │ ├── DocumentSymbolClientCapabilities.hs │ │ ├── DocumentSymbolOptions.hs │ │ ├── DocumentSymbolParams.hs │ │ ├── DocumentSymbolRegistrationOptions.hs │ │ ├── EditRangeWithInsertReplace.hs │ │ ├── ErrorCodes.hs │ │ ├── ExecuteCommandClientCapabilities.hs │ │ ├── ExecuteCommandOptions.hs │ │ ├── ExecuteCommandParams.hs │ │ ├── ExecuteCommandRegistrationOptions.hs │ │ ├── ExecutionSummary.hs │ │ ├── FailureHandlingKind.hs │ │ ├── FileChangeType.hs │ │ ├── FileCreate.hs │ │ ├── FileDelete.hs │ │ ├── FileEvent.hs │ │ ├── FileOperationClientCapabilities.hs │ │ ├── FileOperationFilter.hs │ │ ├── FileOperationOptions.hs │ │ ├── FileOperationPattern.hs │ │ ├── FileOperationPatternKind.hs │ │ ├── FileOperationPatternOptions.hs │ │ ├── FileOperationRegistrationOptions.hs │ │ ├── FileRename.hs │ │ ├── FileSystemWatcher.hs │ │ ├── FoldingRange.hs │ │ ├── FoldingRangeClientCapabilities.hs │ │ ├── FoldingRangeKind.hs │ │ ├── FoldingRangeOptions.hs │ │ ├── FoldingRangeParams.hs │ │ ├── FoldingRangeRegistrationOptions.hs │ │ ├── FormattingOptions.hs │ │ ├── FullDocumentDiagnosticReport.hs │ │ ├── GeneralClientCapabilities.hs │ │ ├── GlobPattern.hs │ │ ├── Hover.hs │ │ ├── HoverClientCapabilities.hs │ │ ├── HoverOptions.hs │ │ ├── HoverParams.hs │ │ ├── HoverRegistrationOptions.hs │ │ ├── ImplementationClientCapabilities.hs │ │ ├── ImplementationOptions.hs │ │ ├── ImplementationParams.hs │ │ ├── ImplementationRegistrationOptions.hs │ │ ├── InitializeError.hs │ │ ├── InitializeParams.hs │ │ ├── InitializeResult.hs │ │ ├── InitializedParams.hs │ │ ├── InlayHint.hs │ │ ├── InlayHintClientCapabilities.hs │ │ ├── InlayHintKind.hs │ │ ├── InlayHintLabelPart.hs │ │ ├── InlayHintOptions.hs │ │ ├── InlayHintParams.hs │ │ ├── InlayHintRegistrationOptions.hs │ │ ├── InlayHintWorkspaceClientCapabilities.hs │ │ ├── InlineValue.hs │ │ ├── InlineValueClientCapabilities.hs │ │ ├── InlineValueContext.hs │ │ ├── InlineValueEvaluatableExpression.hs │ │ ├── InlineValueOptions.hs │ │ ├── InlineValueParams.hs │ │ ├── InlineValueRegistrationOptions.hs │ │ ├── InlineValueText.hs │ │ ├── InlineValueVariableLookup.hs │ │ ├── InlineValueWorkspaceClientCapabilities.hs │ │ ├── InsertReplaceEdit.hs │ │ ├── InsertTextFormat.hs │ │ ├── InsertTextMode.hs │ │ ├── LSPErrorCodes.hs │ │ ├── LanguageKind.hs │ │ ├── LinkedEditingRangeClientCapabilities.hs │ │ ├── LinkedEditingRangeOptions.hs │ │ ├── LinkedEditingRangeParams.hs │ │ ├── LinkedEditingRangeRegistrationOptions.hs │ │ ├── LinkedEditingRanges.hs │ │ ├── Location.hs │ │ ├── LocationLink.hs │ │ ├── LocationUriOnly.hs │ │ ├── LogMessageParams.hs │ │ ├── LogTraceParams.hs │ │ ├── MarkdownClientCapabilities.hs │ │ ├── MarkedString.hs │ │ ├── MarkedStringWithLanguage.hs │ │ ├── MarkupContent.hs │ │ ├── MarkupKind.hs │ │ ├── MessageActionItem.hs │ │ ├── MessageType.hs │ │ ├── Moniker.hs │ │ ├── MonikerClientCapabilities.hs │ │ ├── MonikerKind.hs │ │ ├── MonikerOptions.hs │ │ ├── MonikerParams.hs │ │ ├── MonikerRegistrationOptions.hs │ │ ├── NotebookCell.hs │ │ ├── NotebookCellArrayChange.hs │ │ ├── NotebookCellKind.hs │ │ ├── NotebookCellLanguage.hs │ │ ├── NotebookCellTextDocumentFilter.hs │ │ ├── NotebookDocument.hs │ │ ├── NotebookDocumentCellChangeStructure.hs │ │ ├── NotebookDocumentCellChanges.hs │ │ ├── NotebookDocumentCellContentChanges.hs │ │ ├── NotebookDocumentChangeEvent.hs │ │ ├── NotebookDocumentClientCapabilities.hs │ │ ├── NotebookDocumentFilter.hs │ │ ├── NotebookDocumentFilterNotebookType.hs │ │ ├── NotebookDocumentFilterPattern.hs │ │ ├── NotebookDocumentFilterScheme.hs │ │ ├── NotebookDocumentFilterWithCells.hs │ │ ├── NotebookDocumentFilterWithNotebook.hs │ │ ├── NotebookDocumentIdentifier.hs │ │ ├── NotebookDocumentSyncClientCapabilities.hs │ │ ├── NotebookDocumentSyncOptions.hs │ │ ├── NotebookDocumentSyncRegistrationOptions.hs │ │ ├── OptionalVersionedTextDocumentIdentifier.hs │ │ ├── ParameterInformation.hs │ │ ├── PartialResultParams.hs │ │ ├── Pattern.hs │ │ ├── Position.hs │ │ ├── PositionEncodingKind.hs │ │ ├── PrepareRenameDefaultBehavior.hs │ │ ├── PrepareRenameParams.hs │ │ ├── PrepareRenamePlaceholder.hs │ │ ├── PrepareRenameResult.hs │ │ ├── PrepareSupportDefaultBehavior.hs │ │ ├── PreviousResultId.hs │ │ ├── ProgressParams.hs │ │ ├── ProgressToken.hs │ │ ├── PublishDiagnosticsClientCapabilities.hs │ │ ├── PublishDiagnosticsParams.hs │ │ ├── Range.hs │ │ ├── ReferenceClientCapabilities.hs │ │ ├── ReferenceContext.hs │ │ ├── ReferenceOptions.hs │ │ ├── ReferenceParams.hs │ │ ├── ReferenceRegistrationOptions.hs │ │ ├── Registration.hs │ │ ├── RegistrationParams.hs │ │ ├── RegularExpressionEngineKind.hs │ │ ├── RegularExpressionsClientCapabilities.hs │ │ ├── RelatedFullDocumentDiagnosticReport.hs │ │ ├── RelatedUnchangedDocumentDiagnosticReport.hs │ │ ├── RelativePattern.hs │ │ ├── RenameClientCapabilities.hs │ │ ├── RenameFile.hs │ │ ├── RenameFileOptions.hs │ │ ├── RenameFilesParams.hs │ │ ├── RenameOptions.hs │ │ ├── RenameParams.hs │ │ ├── RenameRegistrationOptions.hs │ │ ├── ResourceOperation.hs │ │ ├── ResourceOperationKind.hs │ │ ├── SaveOptions.hs │ │ ├── SelectionRange.hs │ │ ├── SelectionRangeClientCapabilities.hs │ │ ├── SelectionRangeOptions.hs │ │ ├── SelectionRangeParams.hs │ │ ├── SelectionRangeRegistrationOptions.hs │ │ ├── SemanticTokenModifiers.hs │ │ ├── SemanticTokenTypes.hs │ │ ├── SemanticTokens.hs │ │ ├── SemanticTokensClientCapabilities.hs │ │ ├── SemanticTokensDelta.hs │ │ ├── SemanticTokensDeltaParams.hs │ │ ├── SemanticTokensDeltaPartialResult.hs │ │ ├── SemanticTokensEdit.hs │ │ ├── SemanticTokensFullDelta.hs │ │ ├── SemanticTokensLegend.hs │ │ ├── SemanticTokensOptions.hs │ │ ├── SemanticTokensParams.hs │ │ ├── SemanticTokensPartialResult.hs │ │ ├── SemanticTokensRangeParams.hs │ │ ├── SemanticTokensRegistrationOptions.hs │ │ ├── SemanticTokensWorkspaceClientCapabilities.hs │ │ ├── ServerCapabilities.hs │ │ ├── ServerCompletionItemOptions.hs │ │ ├── ServerInfo.hs │ │ ├── SetTraceParams.hs │ │ ├── ShowDocumentClientCapabilities.hs │ │ ├── ShowDocumentParams.hs │ │ ├── ShowDocumentResult.hs │ │ ├── ShowMessageParams.hs │ │ ├── ShowMessageRequestClientCapabilities.hs │ │ ├── ShowMessageRequestParams.hs │ │ ├── SignatureHelp.hs │ │ ├── SignatureHelpClientCapabilities.hs │ │ ├── SignatureHelpContext.hs │ │ ├── SignatureHelpOptions.hs │ │ ├── SignatureHelpParams.hs │ │ ├── SignatureHelpRegistrationOptions.hs │ │ ├── SignatureHelpTriggerKind.hs │ │ ├── SignatureInformation.hs │ │ ├── StaleRequestSupportOptions.hs │ │ ├── StaticRegistrationOptions.hs │ │ ├── SymbolInformation.hs │ │ ├── SymbolKind.hs │ │ ├── SymbolTag.hs │ │ ├── TextDocumentChangeRegistrationOptions.hs │ │ ├── TextDocumentClientCapabilities.hs │ │ ├── TextDocumentContentChangeEvent.hs │ │ ├── TextDocumentContentChangePartial.hs │ │ ├── TextDocumentContentChangeWholeDocument.hs │ │ ├── TextDocumentEdit.hs │ │ ├── TextDocumentFilter.hs │ │ ├── TextDocumentFilterLanguage.hs │ │ ├── TextDocumentFilterPattern.hs │ │ ├── TextDocumentFilterScheme.hs │ │ ├── TextDocumentIdentifier.hs │ │ ├── TextDocumentItem.hs │ │ ├── TextDocumentPositionParams.hs │ │ ├── TextDocumentRegistrationOptions.hs │ │ ├── TextDocumentSaveReason.hs │ │ ├── TextDocumentSaveRegistrationOptions.hs │ │ ├── TextDocumentSyncClientCapabilities.hs │ │ ├── TextDocumentSyncKind.hs │ │ ├── TextDocumentSyncOptions.hs │ │ ├── TextEdit.hs │ │ ├── TokenFormat.hs │ │ ├── TraceValue.hs │ │ ├── TypeDefinitionClientCapabilities.hs │ │ ├── TypeDefinitionOptions.hs │ │ ├── TypeDefinitionParams.hs │ │ ├── TypeDefinitionRegistrationOptions.hs │ │ ├── TypeHierarchyClientCapabilities.hs │ │ ├── TypeHierarchyItem.hs │ │ ├── TypeHierarchyOptions.hs │ │ ├── TypeHierarchyPrepareParams.hs │ │ ├── TypeHierarchyRegistrationOptions.hs │ │ ├── TypeHierarchySubtypesParams.hs │ │ ├── TypeHierarchySupertypesParams.hs │ │ ├── UInitializeParams.hs │ │ ├── UnchangedDocumentDiagnosticReport.hs │ │ ├── UniquenessLevel.hs │ │ ├── Unregistration.hs │ │ ├── UnregistrationParams.hs │ │ ├── VersionedNotebookDocumentIdentifier.hs │ │ ├── VersionedTextDocumentIdentifier.hs │ │ ├── WatchKind.hs │ │ ├── WillSaveTextDocumentParams.hs │ │ ├── WindowClientCapabilities.hs │ │ ├── WorkDoneProgressBegin.hs │ │ ├── WorkDoneProgressCancelParams.hs │ │ ├── WorkDoneProgressCreateParams.hs │ │ ├── WorkDoneProgressEnd.hs │ │ ├── WorkDoneProgressOptions.hs │ │ ├── WorkDoneProgressParams.hs │ │ ├── WorkDoneProgressReport.hs │ │ ├── WorkspaceClientCapabilities.hs │ │ ├── WorkspaceDiagnosticParams.hs │ │ ├── WorkspaceDiagnosticReport.hs │ │ ├── WorkspaceDiagnosticReportPartialResult.hs │ │ ├── WorkspaceDocumentDiagnosticReport.hs │ │ ├── WorkspaceEdit.hs │ │ ├── WorkspaceEditClientCapabilities.hs │ │ ├── WorkspaceFolder.hs │ │ ├── WorkspaceFoldersChangeEvent.hs │ │ ├── WorkspaceFoldersInitializeParams.hs │ │ ├── WorkspaceFoldersServerCapabilities.hs │ │ ├── WorkspaceFullDocumentDiagnosticReport.hs │ │ ├── WorkspaceOptions.hs │ │ ├── WorkspaceSymbol.hs │ │ ├── WorkspaceSymbolClientCapabilities.hs │ │ ├── WorkspaceSymbolOptions.hs │ │ ├── WorkspaceSymbolParams.hs │ │ ├── WorkspaceSymbolRegistrationOptions.hs │ │ └── WorkspaceUnchangedDocumentDiagnosticReport.hs ├── generator │ ├── CodeGen.hs │ └── Main.hs ├── lsp-types.cabal ├── metaModel.json ├── metamodel │ └── Language │ │ └── LSP │ │ ├── MetaModel.hs │ │ └── MetaModel │ │ └── Types.hs ├── quickcheck │ └── Language │ │ └── LSP │ │ └── Protocol │ │ ├── QuickCheck.hs │ │ └── QuickCheck │ │ ├── Common.hs │ │ ├── Message.hs │ │ └── Types.hs ├── src │ ├── Data │ │ ├── IxMap.hs │ │ └── Row │ │ │ ├── Aeson.hs │ │ │ └── Hashable.hs │ └── Language │ │ └── LSP │ │ └── Protocol │ │ ├── Capabilities.hs │ │ ├── Lens.hs │ │ ├── Message.hs │ │ ├── Message │ │ ├── Lens.hs │ │ ├── LspId.hs │ │ ├── Meta.hs │ │ ├── Method.hs │ │ ├── Parsing.hs │ │ ├── Registration.hs │ │ └── Types.hs │ │ ├── Meta.hs │ │ ├── Types.hs │ │ ├── Types │ │ ├── CodeAction.hs │ │ ├── Common.hs │ │ ├── Edit.hs │ │ ├── Lens.hs │ │ ├── Location.hs │ │ ├── LspEnum.hs │ │ ├── MarkupContent.hs │ │ ├── Orphans.hs │ │ ├── Progress.hs │ │ ├── SemanticTokens.hs │ │ ├── Singletons.hs │ │ ├── Uri.hs │ │ ├── Uri │ │ │ └── OsPath.hs │ │ └── WatchKinds.hs │ │ └── Utils │ │ ├── Misc.hs │ │ └── SMethodMap.hs └── test │ ├── CapabilitiesSpec.hs │ ├── JsonSpec.hs │ ├── LocationSpec.hs │ ├── Main.hs │ ├── MethodSpec.hs │ ├── SemanticTokensSpec.hs │ ├── ServerCapabilitiesSpec.hs │ ├── Spec.hs │ ├── TypesSpec.hs │ ├── URIFilePathSpec.hs │ └── WorkspaceEditSpec.hs ├── lsp ├── ChangeLog.md ├── LICENSE ├── README.md ├── example │ ├── Reactor.hs │ └── Simple.hs ├── lsp.cabal ├── src │ └── Language │ │ └── LSP │ │ ├── Diagnostics.hs │ │ ├── Logging.hs │ │ ├── Server.hs │ │ ├── Server │ │ ├── Control.hs │ │ ├── Core.hs │ │ ├── Processing.hs │ │ └── Progress.hs │ │ └── VFS.hs └── test │ ├── DiagnosticsSpec.hs │ ├── Main.hs │ ├── Spec.hs │ └── VspSpec.hs └── shell.nix /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/mergify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/.github/mergify.yml -------------------------------------------------------------------------------- /.github/workflows/format.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/.github/workflows/format.yaml -------------------------------------------------------------------------------- /.github/workflows/haskell.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/.github/workflows/haskell.yml -------------------------------------------------------------------------------- /.github/workflows/nix.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/.github/workflows/nix.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/.gitignore -------------------------------------------------------------------------------- /.hlint.yaml: -------------------------------------------------------------------------------- 1 | - ignore: {name: Use newtype instead of data } 2 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/README.md -------------------------------------------------------------------------------- /cabal.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/cabal.project -------------------------------------------------------------------------------- /default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/default.nix -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/flake.nix -------------------------------------------------------------------------------- /fourmolu.yaml: -------------------------------------------------------------------------------- 1 | indentation: 2 2 | single-constraint-parens: auto 3 | -------------------------------------------------------------------------------- /lsp-test/ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-test/ChangeLog.md -------------------------------------------------------------------------------- /lsp-test/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-test/LICENSE -------------------------------------------------------------------------------- /lsp-test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-test/README.md -------------------------------------------------------------------------------- /lsp-test/bench/SimpleBench.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-test/bench/SimpleBench.hs -------------------------------------------------------------------------------- /lsp-test/example/Test.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-test/example/Test.hs -------------------------------------------------------------------------------- /lsp-test/func-test/FuncTest.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-test/func-test/FuncTest.hs -------------------------------------------------------------------------------- /lsp-test/lsp-test.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-test/lsp-test.cabal -------------------------------------------------------------------------------- /lsp-test/src/Language/LSP/Test.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-test/src/Language/LSP/Test.hs -------------------------------------------------------------------------------- /lsp-test/src/Language/LSP/Test/Compat.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-test/src/Language/LSP/Test/Compat.hs -------------------------------------------------------------------------------- /lsp-test/src/Language/LSP/Test/Decoding.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-test/src/Language/LSP/Test/Decoding.hs -------------------------------------------------------------------------------- /lsp-test/src/Language/LSP/Test/Exceptions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-test/src/Language/LSP/Test/Exceptions.hs -------------------------------------------------------------------------------- /lsp-test/src/Language/LSP/Test/Files.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-test/src/Language/LSP/Test/Files.hs -------------------------------------------------------------------------------- /lsp-test/src/Language/LSP/Test/Parsing.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-test/src/Language/LSP/Test/Parsing.hs -------------------------------------------------------------------------------- /lsp-test/src/Language/LSP/Test/Replay.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-test/src/Language/LSP/Test/Replay.hs -------------------------------------------------------------------------------- /lsp-test/src/Language/LSP/Test/Server.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-test/src/Language/LSP/Test/Server.hs -------------------------------------------------------------------------------- /lsp-test/src/Language/LSP/Test/Session.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-test/src/Language/LSP/Test/Session.hs -------------------------------------------------------------------------------- /lsp-test/test/DummyServer.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-test/test/DummyServer.hs -------------------------------------------------------------------------------- /lsp-test/test/Test.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-test/test/Test.hs -------------------------------------------------------------------------------- /lsp-test/test/data/Error.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-test/test/data/Error.hs -------------------------------------------------------------------------------- /lsp-test/test/data/Format.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-test/test/data/Format.hs -------------------------------------------------------------------------------- /lsp-test/test/data/Rename.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-test/test/data/Rename.hs -------------------------------------------------------------------------------- /lsp-test/test/data/documentSymbolFail/client.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-test/test/data/documentSymbolFail/client.log -------------------------------------------------------------------------------- /lsp-test/test/data/documentSymbolFail/example/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-test/test/data/documentSymbolFail/example/Main.hs -------------------------------------------------------------------------------- /lsp-test/test/data/documentSymbolFail/server.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-test/test/data/documentSymbolFail/server.log -------------------------------------------------------------------------------- /lsp-test/test/data/hie.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-test/test/data/hie.yaml -------------------------------------------------------------------------------- /lsp-test/test/data/refactor/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-test/test/data/refactor/Main.hs -------------------------------------------------------------------------------- /lsp-test/test/data/renameFail/Desktop/simple.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-test/test/data/renameFail/Desktop/simple.hs -------------------------------------------------------------------------------- /lsp-test/test/data/renameFail/session.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-test/test/data/renameFail/session.log -------------------------------------------------------------------------------- /lsp-test/test/data/renamePass/Desktop/simple.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-test/test/data/renamePass/Desktop/simple.hs -------------------------------------------------------------------------------- /lsp-test/test/data/renamePass/session.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-test/test/data/renamePass/session.log -------------------------------------------------------------------------------- /lsp-types/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/.gitattributes -------------------------------------------------------------------------------- /lsp-types/.golden/fullCaps/golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/.golden/fullCaps/golden -------------------------------------------------------------------------------- /lsp-types/.golden/oldCaps/golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/.golden/oldCaps/golden -------------------------------------------------------------------------------- /lsp-types/ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/ChangeLog.md -------------------------------------------------------------------------------- /lsp-types/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/LICENSE -------------------------------------------------------------------------------- /lsp-types/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/README.md -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Meta.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Meta.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Method.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Method.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/AnnotatedTextEdit.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/AnnotatedTextEdit.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/ApplyWorkspaceEditParams.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/ApplyWorkspaceEditParams.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/ApplyWorkspaceEditResult.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/ApplyWorkspaceEditResult.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/BaseSymbolInformation.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/BaseSymbolInformation.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/CallHierarchyClientCapabilities.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/CallHierarchyClientCapabilities.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/CallHierarchyIncomingCall.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/CallHierarchyIncomingCall.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/CallHierarchyIncomingCallsParams.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/CallHierarchyIncomingCallsParams.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/CallHierarchyItem.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/CallHierarchyItem.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/CallHierarchyOptions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/CallHierarchyOptions.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/CallHierarchyOutgoingCall.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/CallHierarchyOutgoingCall.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/CallHierarchyOutgoingCallsParams.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/CallHierarchyOutgoingCallsParams.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/CallHierarchyPrepareParams.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/CallHierarchyPrepareParams.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/CallHierarchyRegistrationOptions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/CallHierarchyRegistrationOptions.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/CancelParams.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/CancelParams.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/ChangeAnnotation.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/ChangeAnnotation.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/ChangeAnnotationIdentifier.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/ChangeAnnotationIdentifier.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/ChangeAnnotationsSupportOptions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/ChangeAnnotationsSupportOptions.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/ClientCapabilities.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/ClientCapabilities.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/ClientCodeActionKindOptions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/ClientCodeActionKindOptions.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/ClientCodeActionLiteralOptions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/ClientCodeActionLiteralOptions.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/ClientCodeActionResolveOptions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/ClientCodeActionResolveOptions.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/ClientCompletionItemInsertTextModeOptions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/ClientCompletionItemInsertTextModeOptions.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/ClientCompletionItemOptions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/ClientCompletionItemOptions.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/ClientCompletionItemOptionsKind.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/ClientCompletionItemOptionsKind.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/ClientCompletionItemResolveOptions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/ClientCompletionItemResolveOptions.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/ClientDiagnosticsTagOptions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/ClientDiagnosticsTagOptions.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/ClientFoldingRangeKindOptions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/ClientFoldingRangeKindOptions.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/ClientFoldingRangeOptions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/ClientFoldingRangeOptions.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/ClientInfo.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/ClientInfo.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/ClientInlayHintResolveOptions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/ClientInlayHintResolveOptions.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/ClientSemanticTokensRequestFullDelta.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/ClientSemanticTokensRequestFullDelta.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/ClientSemanticTokensRequestOptions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/ClientSemanticTokensRequestOptions.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/ClientShowMessageActionItemOptions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/ClientShowMessageActionItemOptions.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/ClientSignatureInformationOptions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/ClientSignatureInformationOptions.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/ClientSignatureParameterInformationOptions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/ClientSignatureParameterInformationOptions.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/ClientSymbolKindOptions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/ClientSymbolKindOptions.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/ClientSymbolResolveOptions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/ClientSymbolResolveOptions.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/ClientSymbolTagOptions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/ClientSymbolTagOptions.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/CodeAction.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/CodeAction.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/CodeActionClientCapabilities.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/CodeActionClientCapabilities.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/CodeActionContext.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/CodeActionContext.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/CodeActionDisabled.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/CodeActionDisabled.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/CodeActionKind.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/CodeActionKind.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/CodeActionOptions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/CodeActionOptions.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/CodeActionParams.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/CodeActionParams.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/CodeActionRegistrationOptions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/CodeActionRegistrationOptions.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/CodeActionTriggerKind.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/CodeActionTriggerKind.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/CodeDescription.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/CodeDescription.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/CodeLens.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/CodeLens.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/CodeLensClientCapabilities.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/CodeLensClientCapabilities.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/CodeLensOptions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/CodeLensOptions.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/CodeLensParams.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/CodeLensParams.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/CodeLensRegistrationOptions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/CodeLensRegistrationOptions.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/CodeLensWorkspaceClientCapabilities.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/CodeLensWorkspaceClientCapabilities.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/Color.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/Color.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/ColorInformation.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/ColorInformation.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/ColorPresentation.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/ColorPresentation.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/ColorPresentationParams.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/ColorPresentationParams.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/Command.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/Command.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/CompletionClientCapabilities.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/CompletionClientCapabilities.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/CompletionContext.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/CompletionContext.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/CompletionItem.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/CompletionItem.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/CompletionItemDefaults.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/CompletionItemDefaults.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/CompletionItemKind.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/CompletionItemKind.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/CompletionItemLabelDetails.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/CompletionItemLabelDetails.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/CompletionItemTag.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/CompletionItemTag.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/CompletionItemTagOptions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/CompletionItemTagOptions.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/CompletionList.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/CompletionList.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/CompletionListCapabilities.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/CompletionListCapabilities.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/CompletionOptions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/CompletionOptions.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/CompletionParams.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/CompletionParams.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/CompletionRegistrationOptions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/CompletionRegistrationOptions.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/CompletionTriggerKind.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/CompletionTriggerKind.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/ConfigurationItem.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/ConfigurationItem.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/ConfigurationParams.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/ConfigurationParams.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/CreateFile.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/CreateFile.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/CreateFileOptions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/CreateFileOptions.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/CreateFilesParams.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/CreateFilesParams.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/Declaration.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/Declaration.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/DeclarationClientCapabilities.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/DeclarationClientCapabilities.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/DeclarationLink.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/DeclarationLink.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/DeclarationOptions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/DeclarationOptions.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/DeclarationParams.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/DeclarationParams.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/DeclarationRegistrationOptions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/DeclarationRegistrationOptions.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/Definition.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/Definition.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/DefinitionClientCapabilities.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/DefinitionClientCapabilities.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/DefinitionLink.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/DefinitionLink.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/DefinitionOptions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/DefinitionOptions.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/DefinitionParams.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/DefinitionParams.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/DefinitionRegistrationOptions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/DefinitionRegistrationOptions.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/DeleteFile.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/DeleteFile.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/DeleteFileOptions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/DeleteFileOptions.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/DeleteFilesParams.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/DeleteFilesParams.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/Diagnostic.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/Diagnostic.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/DiagnosticClientCapabilities.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/DiagnosticClientCapabilities.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/DiagnosticOptions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/DiagnosticOptions.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/DiagnosticRegistrationOptions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/DiagnosticRegistrationOptions.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/DiagnosticRelatedInformation.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/DiagnosticRelatedInformation.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/DiagnosticServerCancellationData.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/DiagnosticServerCancellationData.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/DiagnosticSeverity.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/DiagnosticSeverity.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/DiagnosticTag.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/DiagnosticTag.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/DiagnosticWorkspaceClientCapabilities.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/DiagnosticWorkspaceClientCapabilities.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/DidChangeConfigurationClientCapabilities.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/DidChangeConfigurationClientCapabilities.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/DidChangeConfigurationParams.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/DidChangeConfigurationParams.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/DidChangeConfigurationRegistrationOptions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/DidChangeConfigurationRegistrationOptions.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/DidChangeNotebookDocumentParams.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/DidChangeNotebookDocumentParams.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/DidChangeTextDocumentParams.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/DidChangeTextDocumentParams.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/DidChangeWatchedFilesClientCapabilities.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/DidChangeWatchedFilesClientCapabilities.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/DidChangeWatchedFilesParams.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/DidChangeWatchedFilesParams.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/DidChangeWatchedFilesRegistrationOptions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/DidChangeWatchedFilesRegistrationOptions.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/DidChangeWorkspaceFoldersParams.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/DidChangeWorkspaceFoldersParams.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/DidCloseNotebookDocumentParams.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/DidCloseNotebookDocumentParams.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/DidCloseTextDocumentParams.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/DidCloseTextDocumentParams.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/DidOpenNotebookDocumentParams.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/DidOpenNotebookDocumentParams.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/DidOpenTextDocumentParams.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/DidOpenTextDocumentParams.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/DidSaveNotebookDocumentParams.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/DidSaveNotebookDocumentParams.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/DidSaveTextDocumentParams.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/DidSaveTextDocumentParams.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/DocumentColorClientCapabilities.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/DocumentColorClientCapabilities.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/DocumentColorOptions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/DocumentColorOptions.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/DocumentColorParams.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/DocumentColorParams.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/DocumentColorRegistrationOptions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/DocumentColorRegistrationOptions.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/DocumentDiagnosticParams.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/DocumentDiagnosticParams.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/DocumentDiagnosticReport.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/DocumentDiagnosticReport.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/DocumentDiagnosticReportKind.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/DocumentDiagnosticReportKind.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/DocumentDiagnosticReportPartialResult.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/DocumentDiagnosticReportPartialResult.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/DocumentFilter.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/DocumentFilter.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/DocumentFormattingClientCapabilities.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/DocumentFormattingClientCapabilities.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/DocumentFormattingOptions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/DocumentFormattingOptions.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/DocumentFormattingParams.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/DocumentFormattingParams.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/DocumentFormattingRegistrationOptions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/DocumentFormattingRegistrationOptions.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/DocumentHighlight.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/DocumentHighlight.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/DocumentHighlightClientCapabilities.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/DocumentHighlightClientCapabilities.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/DocumentHighlightKind.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/DocumentHighlightKind.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/DocumentHighlightOptions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/DocumentHighlightOptions.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/DocumentHighlightParams.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/DocumentHighlightParams.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/DocumentHighlightRegistrationOptions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/DocumentHighlightRegistrationOptions.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/DocumentLink.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/DocumentLink.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/DocumentLinkClientCapabilities.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/DocumentLinkClientCapabilities.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/DocumentLinkOptions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/DocumentLinkOptions.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/DocumentLinkParams.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/DocumentLinkParams.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/DocumentLinkRegistrationOptions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/DocumentLinkRegistrationOptions.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/DocumentOnTypeFormattingClientCapabilities.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/DocumentOnTypeFormattingClientCapabilities.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/DocumentOnTypeFormattingOptions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/DocumentOnTypeFormattingOptions.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/DocumentOnTypeFormattingParams.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/DocumentOnTypeFormattingParams.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/DocumentOnTypeFormattingRegistrationOptions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/DocumentOnTypeFormattingRegistrationOptions.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/DocumentRangeFormattingClientCapabilities.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/DocumentRangeFormattingClientCapabilities.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/DocumentRangeFormattingOptions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/DocumentRangeFormattingOptions.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/DocumentRangeFormattingParams.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/DocumentRangeFormattingParams.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/DocumentRangeFormattingRegistrationOptions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/DocumentRangeFormattingRegistrationOptions.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/DocumentSelector.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/DocumentSelector.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/DocumentSymbol.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/DocumentSymbol.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/DocumentSymbolClientCapabilities.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/DocumentSymbolClientCapabilities.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/DocumentSymbolOptions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/DocumentSymbolOptions.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/DocumentSymbolParams.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/DocumentSymbolParams.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/DocumentSymbolRegistrationOptions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/DocumentSymbolRegistrationOptions.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/EditRangeWithInsertReplace.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/EditRangeWithInsertReplace.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/ErrorCodes.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/ErrorCodes.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/ExecuteCommandClientCapabilities.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/ExecuteCommandClientCapabilities.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/ExecuteCommandOptions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/ExecuteCommandOptions.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/ExecuteCommandParams.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/ExecuteCommandParams.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/ExecuteCommandRegistrationOptions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/ExecuteCommandRegistrationOptions.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/ExecutionSummary.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/ExecutionSummary.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/FailureHandlingKind.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/FailureHandlingKind.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/FileChangeType.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/FileChangeType.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/FileCreate.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/FileCreate.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/FileDelete.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/FileDelete.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/FileEvent.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/FileEvent.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/FileOperationClientCapabilities.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/FileOperationClientCapabilities.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/FileOperationFilter.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/FileOperationFilter.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/FileOperationOptions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/FileOperationOptions.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/FileOperationPattern.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/FileOperationPattern.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/FileOperationPatternKind.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/FileOperationPatternKind.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/FileOperationPatternOptions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/FileOperationPatternOptions.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/FileOperationRegistrationOptions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/FileOperationRegistrationOptions.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/FileRename.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/FileRename.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/FileSystemWatcher.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/FileSystemWatcher.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/FoldingRange.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/FoldingRange.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/FoldingRangeClientCapabilities.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/FoldingRangeClientCapabilities.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/FoldingRangeKind.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/FoldingRangeKind.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/FoldingRangeOptions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/FoldingRangeOptions.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/FoldingRangeParams.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/FoldingRangeParams.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/FoldingRangeRegistrationOptions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/FoldingRangeRegistrationOptions.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/FormattingOptions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/FormattingOptions.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/FullDocumentDiagnosticReport.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/FullDocumentDiagnosticReport.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/GeneralClientCapabilities.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/GeneralClientCapabilities.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/GlobPattern.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/GlobPattern.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/Hover.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/Hover.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/HoverClientCapabilities.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/HoverClientCapabilities.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/HoverOptions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/HoverOptions.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/HoverParams.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/HoverParams.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/HoverRegistrationOptions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/HoverRegistrationOptions.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/ImplementationClientCapabilities.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/ImplementationClientCapabilities.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/ImplementationOptions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/ImplementationOptions.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/ImplementationParams.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/ImplementationParams.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/ImplementationRegistrationOptions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/ImplementationRegistrationOptions.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/InitializeError.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/InitializeError.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/InitializeParams.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/InitializeParams.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/InitializeResult.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/InitializeResult.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/InitializedParams.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/InitializedParams.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/InlayHint.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/InlayHint.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/InlayHintClientCapabilities.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/InlayHintClientCapabilities.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/InlayHintKind.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/InlayHintKind.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/InlayHintLabelPart.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/InlayHintLabelPart.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/InlayHintOptions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/InlayHintOptions.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/InlayHintParams.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/InlayHintParams.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/InlayHintRegistrationOptions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/InlayHintRegistrationOptions.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/InlayHintWorkspaceClientCapabilities.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/InlayHintWorkspaceClientCapabilities.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/InlineValue.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/InlineValue.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/InlineValueClientCapabilities.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/InlineValueClientCapabilities.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/InlineValueContext.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/InlineValueContext.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/InlineValueEvaluatableExpression.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/InlineValueEvaluatableExpression.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/InlineValueOptions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/InlineValueOptions.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/InlineValueParams.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/InlineValueParams.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/InlineValueRegistrationOptions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/InlineValueRegistrationOptions.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/InlineValueText.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/InlineValueText.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/InlineValueVariableLookup.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/InlineValueVariableLookup.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/InlineValueWorkspaceClientCapabilities.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/InlineValueWorkspaceClientCapabilities.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/InsertReplaceEdit.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/InsertReplaceEdit.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/InsertTextFormat.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/InsertTextFormat.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/InsertTextMode.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/InsertTextMode.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/LSPErrorCodes.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/LSPErrorCodes.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/LanguageKind.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/LanguageKind.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/LinkedEditingRangeClientCapabilities.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/LinkedEditingRangeClientCapabilities.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/LinkedEditingRangeOptions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/LinkedEditingRangeOptions.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/LinkedEditingRangeParams.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/LinkedEditingRangeParams.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/LinkedEditingRangeRegistrationOptions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/LinkedEditingRangeRegistrationOptions.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/LinkedEditingRanges.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/LinkedEditingRanges.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/Location.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/Location.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/LocationLink.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/LocationLink.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/LocationUriOnly.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/LocationUriOnly.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/LogMessageParams.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/LogMessageParams.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/LogTraceParams.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/LogTraceParams.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/MarkdownClientCapabilities.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/MarkdownClientCapabilities.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/MarkedString.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/MarkedString.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/MarkedStringWithLanguage.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/MarkedStringWithLanguage.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/MarkupContent.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/MarkupContent.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/MarkupKind.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/MarkupKind.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/MessageActionItem.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/MessageActionItem.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/MessageType.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/MessageType.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/Moniker.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/Moniker.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/MonikerClientCapabilities.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/MonikerClientCapabilities.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/MonikerKind.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/MonikerKind.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/MonikerOptions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/MonikerOptions.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/MonikerParams.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/MonikerParams.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/MonikerRegistrationOptions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/MonikerRegistrationOptions.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/NotebookCell.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/NotebookCell.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/NotebookCellArrayChange.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/NotebookCellArrayChange.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/NotebookCellKind.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/NotebookCellKind.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/NotebookCellLanguage.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/NotebookCellLanguage.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/NotebookCellTextDocumentFilter.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/NotebookCellTextDocumentFilter.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/NotebookDocument.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/NotebookDocument.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/NotebookDocumentCellChangeStructure.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/NotebookDocumentCellChangeStructure.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/NotebookDocumentCellChanges.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/NotebookDocumentCellChanges.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/NotebookDocumentCellContentChanges.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/NotebookDocumentCellContentChanges.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/NotebookDocumentChangeEvent.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/NotebookDocumentChangeEvent.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/NotebookDocumentClientCapabilities.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/NotebookDocumentClientCapabilities.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/NotebookDocumentFilter.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/NotebookDocumentFilter.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/NotebookDocumentFilterNotebookType.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/NotebookDocumentFilterNotebookType.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/NotebookDocumentFilterPattern.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/NotebookDocumentFilterPattern.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/NotebookDocumentFilterScheme.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/NotebookDocumentFilterScheme.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/NotebookDocumentFilterWithCells.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/NotebookDocumentFilterWithCells.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/NotebookDocumentFilterWithNotebook.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/NotebookDocumentFilterWithNotebook.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/NotebookDocumentIdentifier.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/NotebookDocumentIdentifier.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/NotebookDocumentSyncClientCapabilities.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/NotebookDocumentSyncClientCapabilities.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/NotebookDocumentSyncOptions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/NotebookDocumentSyncOptions.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/NotebookDocumentSyncRegistrationOptions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/NotebookDocumentSyncRegistrationOptions.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/OptionalVersionedTextDocumentIdentifier.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/OptionalVersionedTextDocumentIdentifier.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/ParameterInformation.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/ParameterInformation.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/PartialResultParams.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/PartialResultParams.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/Pattern.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/Pattern.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/Position.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/Position.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/PositionEncodingKind.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/PositionEncodingKind.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/PrepareRenameDefaultBehavior.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/PrepareRenameDefaultBehavior.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/PrepareRenameParams.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/PrepareRenameParams.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/PrepareRenamePlaceholder.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/PrepareRenamePlaceholder.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/PrepareRenameResult.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/PrepareRenameResult.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/PrepareSupportDefaultBehavior.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/PrepareSupportDefaultBehavior.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/PreviousResultId.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/PreviousResultId.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/ProgressParams.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/ProgressParams.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/ProgressToken.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/ProgressToken.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/PublishDiagnosticsClientCapabilities.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/PublishDiagnosticsClientCapabilities.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/PublishDiagnosticsParams.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/PublishDiagnosticsParams.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/Range.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/Range.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/ReferenceClientCapabilities.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/ReferenceClientCapabilities.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/ReferenceContext.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/ReferenceContext.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/ReferenceOptions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/ReferenceOptions.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/ReferenceParams.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/ReferenceParams.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/ReferenceRegistrationOptions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/ReferenceRegistrationOptions.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/Registration.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/Registration.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/RegistrationParams.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/RegistrationParams.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/RegularExpressionEngineKind.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/RegularExpressionEngineKind.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/RegularExpressionsClientCapabilities.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/RegularExpressionsClientCapabilities.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/RelatedFullDocumentDiagnosticReport.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/RelatedFullDocumentDiagnosticReport.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/RelatedUnchangedDocumentDiagnosticReport.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/RelatedUnchangedDocumentDiagnosticReport.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/RelativePattern.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/RelativePattern.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/RenameClientCapabilities.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/RenameClientCapabilities.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/RenameFile.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/RenameFile.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/RenameFileOptions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/RenameFileOptions.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/RenameFilesParams.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/RenameFilesParams.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/RenameOptions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/RenameOptions.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/RenameParams.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/RenameParams.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/RenameRegistrationOptions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/RenameRegistrationOptions.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/ResourceOperation.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/ResourceOperation.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/ResourceOperationKind.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/ResourceOperationKind.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/SaveOptions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/SaveOptions.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/SelectionRange.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/SelectionRange.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/SelectionRangeClientCapabilities.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/SelectionRangeClientCapabilities.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/SelectionRangeOptions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/SelectionRangeOptions.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/SelectionRangeParams.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/SelectionRangeParams.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/SelectionRangeRegistrationOptions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/SelectionRangeRegistrationOptions.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/SemanticTokenModifiers.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/SemanticTokenModifiers.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/SemanticTokenTypes.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/SemanticTokenTypes.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/SemanticTokens.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/SemanticTokens.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/SemanticTokensClientCapabilities.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/SemanticTokensClientCapabilities.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/SemanticTokensDelta.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/SemanticTokensDelta.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/SemanticTokensDeltaParams.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/SemanticTokensDeltaParams.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/SemanticTokensDeltaPartialResult.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/SemanticTokensDeltaPartialResult.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/SemanticTokensEdit.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/SemanticTokensEdit.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/SemanticTokensFullDelta.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/SemanticTokensFullDelta.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/SemanticTokensLegend.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/SemanticTokensLegend.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/SemanticTokensOptions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/SemanticTokensOptions.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/SemanticTokensParams.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/SemanticTokensParams.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/SemanticTokensPartialResult.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/SemanticTokensPartialResult.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/SemanticTokensRangeParams.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/SemanticTokensRangeParams.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/SemanticTokensRegistrationOptions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/SemanticTokensRegistrationOptions.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/SemanticTokensWorkspaceClientCapabilities.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/SemanticTokensWorkspaceClientCapabilities.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/ServerCapabilities.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/ServerCapabilities.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/ServerCompletionItemOptions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/ServerCompletionItemOptions.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/ServerInfo.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/ServerInfo.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/SetTraceParams.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/SetTraceParams.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/ShowDocumentClientCapabilities.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/ShowDocumentClientCapabilities.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/ShowDocumentParams.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/ShowDocumentParams.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/ShowDocumentResult.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/ShowDocumentResult.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/ShowMessageParams.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/ShowMessageParams.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/ShowMessageRequestClientCapabilities.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/ShowMessageRequestClientCapabilities.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/ShowMessageRequestParams.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/ShowMessageRequestParams.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/SignatureHelp.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/SignatureHelp.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/SignatureHelpClientCapabilities.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/SignatureHelpClientCapabilities.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/SignatureHelpContext.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/SignatureHelpContext.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/SignatureHelpOptions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/SignatureHelpOptions.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/SignatureHelpParams.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/SignatureHelpParams.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/SignatureHelpRegistrationOptions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/SignatureHelpRegistrationOptions.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/SignatureHelpTriggerKind.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/SignatureHelpTriggerKind.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/SignatureInformation.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/SignatureInformation.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/StaleRequestSupportOptions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/StaleRequestSupportOptions.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/StaticRegistrationOptions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/StaticRegistrationOptions.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/SymbolInformation.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/SymbolInformation.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/SymbolKind.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/SymbolKind.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/SymbolTag.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/SymbolTag.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/TextDocumentChangeRegistrationOptions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/TextDocumentChangeRegistrationOptions.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/TextDocumentClientCapabilities.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/TextDocumentClientCapabilities.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/TextDocumentContentChangeEvent.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/TextDocumentContentChangeEvent.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/TextDocumentContentChangePartial.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/TextDocumentContentChangePartial.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/TextDocumentContentChangeWholeDocument.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/TextDocumentContentChangeWholeDocument.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/TextDocumentEdit.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/TextDocumentEdit.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/TextDocumentFilter.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/TextDocumentFilter.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/TextDocumentFilterLanguage.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/TextDocumentFilterLanguage.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/TextDocumentFilterPattern.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/TextDocumentFilterPattern.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/TextDocumentFilterScheme.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/TextDocumentFilterScheme.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/TextDocumentIdentifier.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/TextDocumentIdentifier.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/TextDocumentItem.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/TextDocumentItem.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/TextDocumentPositionParams.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/TextDocumentPositionParams.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/TextDocumentRegistrationOptions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/TextDocumentRegistrationOptions.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/TextDocumentSaveReason.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/TextDocumentSaveReason.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/TextDocumentSaveRegistrationOptions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/TextDocumentSaveRegistrationOptions.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/TextDocumentSyncClientCapabilities.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/TextDocumentSyncClientCapabilities.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/TextDocumentSyncKind.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/TextDocumentSyncKind.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/TextDocumentSyncOptions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/TextDocumentSyncOptions.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/TextEdit.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/TextEdit.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/TokenFormat.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/TokenFormat.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/TraceValue.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/TraceValue.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/TypeDefinitionClientCapabilities.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/TypeDefinitionClientCapabilities.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/TypeDefinitionOptions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/TypeDefinitionOptions.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/TypeDefinitionParams.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/TypeDefinitionParams.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/TypeDefinitionRegistrationOptions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/TypeDefinitionRegistrationOptions.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/TypeHierarchyClientCapabilities.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/TypeHierarchyClientCapabilities.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/TypeHierarchyItem.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/TypeHierarchyItem.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/TypeHierarchyOptions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/TypeHierarchyOptions.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/TypeHierarchyPrepareParams.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/TypeHierarchyPrepareParams.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/TypeHierarchyRegistrationOptions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/TypeHierarchyRegistrationOptions.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/TypeHierarchySubtypesParams.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/TypeHierarchySubtypesParams.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/TypeHierarchySupertypesParams.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/TypeHierarchySupertypesParams.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/UInitializeParams.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/UInitializeParams.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/UnchangedDocumentDiagnosticReport.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/UnchangedDocumentDiagnosticReport.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/UniquenessLevel.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/UniquenessLevel.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/Unregistration.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/Unregistration.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/UnregistrationParams.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/UnregistrationParams.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/VersionedNotebookDocumentIdentifier.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/VersionedNotebookDocumentIdentifier.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/VersionedTextDocumentIdentifier.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/VersionedTextDocumentIdentifier.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/WatchKind.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/WatchKind.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/WillSaveTextDocumentParams.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/WillSaveTextDocumentParams.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/WindowClientCapabilities.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/WindowClientCapabilities.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/WorkDoneProgressBegin.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/WorkDoneProgressBegin.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/WorkDoneProgressCancelParams.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/WorkDoneProgressCancelParams.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/WorkDoneProgressCreateParams.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/WorkDoneProgressCreateParams.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/WorkDoneProgressEnd.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/WorkDoneProgressEnd.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/WorkDoneProgressOptions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/WorkDoneProgressOptions.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/WorkDoneProgressParams.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/WorkDoneProgressParams.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/WorkDoneProgressReport.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/WorkDoneProgressReport.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/WorkspaceClientCapabilities.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/WorkspaceClientCapabilities.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/WorkspaceDiagnosticParams.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/WorkspaceDiagnosticParams.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/WorkspaceDiagnosticReport.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/WorkspaceDiagnosticReport.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/WorkspaceDiagnosticReportPartialResult.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/WorkspaceDiagnosticReportPartialResult.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/WorkspaceDocumentDiagnosticReport.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/WorkspaceDocumentDiagnosticReport.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/WorkspaceEdit.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/WorkspaceEdit.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/WorkspaceEditClientCapabilities.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/WorkspaceEditClientCapabilities.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/WorkspaceFolder.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/WorkspaceFolder.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/WorkspaceFoldersChangeEvent.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/WorkspaceFoldersChangeEvent.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/WorkspaceFoldersInitializeParams.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/WorkspaceFoldersInitializeParams.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/WorkspaceFoldersServerCapabilities.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/WorkspaceFoldersServerCapabilities.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/WorkspaceFullDocumentDiagnosticReport.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/WorkspaceFullDocumentDiagnosticReport.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/WorkspaceOptions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/WorkspaceOptions.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/WorkspaceSymbol.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/WorkspaceSymbol.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/WorkspaceSymbolClientCapabilities.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/WorkspaceSymbolClientCapabilities.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/WorkspaceSymbolOptions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/WorkspaceSymbolOptions.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/WorkspaceSymbolParams.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/WorkspaceSymbolParams.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/WorkspaceSymbolRegistrationOptions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/WorkspaceSymbolRegistrationOptions.hs -------------------------------------------------------------------------------- /lsp-types/generated/Language/LSP/Protocol/Internal/Types/WorkspaceUnchangedDocumentDiagnosticReport.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generated/Language/LSP/Protocol/Internal/Types/WorkspaceUnchangedDocumentDiagnosticReport.hs -------------------------------------------------------------------------------- /lsp-types/generator/CodeGen.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generator/CodeGen.hs -------------------------------------------------------------------------------- /lsp-types/generator/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/generator/Main.hs -------------------------------------------------------------------------------- /lsp-types/lsp-types.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/lsp-types.cabal -------------------------------------------------------------------------------- /lsp-types/metaModel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/metaModel.json -------------------------------------------------------------------------------- /lsp-types/metamodel/Language/LSP/MetaModel.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/metamodel/Language/LSP/MetaModel.hs -------------------------------------------------------------------------------- /lsp-types/metamodel/Language/LSP/MetaModel/Types.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/metamodel/Language/LSP/MetaModel/Types.hs -------------------------------------------------------------------------------- /lsp-types/quickcheck/Language/LSP/Protocol/QuickCheck.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/quickcheck/Language/LSP/Protocol/QuickCheck.hs -------------------------------------------------------------------------------- /lsp-types/quickcheck/Language/LSP/Protocol/QuickCheck/Common.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/quickcheck/Language/LSP/Protocol/QuickCheck/Common.hs -------------------------------------------------------------------------------- /lsp-types/quickcheck/Language/LSP/Protocol/QuickCheck/Message.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/quickcheck/Language/LSP/Protocol/QuickCheck/Message.hs -------------------------------------------------------------------------------- /lsp-types/quickcheck/Language/LSP/Protocol/QuickCheck/Types.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/quickcheck/Language/LSP/Protocol/QuickCheck/Types.hs -------------------------------------------------------------------------------- /lsp-types/src/Data/IxMap.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/src/Data/IxMap.hs -------------------------------------------------------------------------------- /lsp-types/src/Data/Row/Aeson.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/src/Data/Row/Aeson.hs -------------------------------------------------------------------------------- /lsp-types/src/Data/Row/Hashable.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/src/Data/Row/Hashable.hs -------------------------------------------------------------------------------- /lsp-types/src/Language/LSP/Protocol/Capabilities.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/src/Language/LSP/Protocol/Capabilities.hs -------------------------------------------------------------------------------- /lsp-types/src/Language/LSP/Protocol/Lens.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/src/Language/LSP/Protocol/Lens.hs -------------------------------------------------------------------------------- /lsp-types/src/Language/LSP/Protocol/Message.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/src/Language/LSP/Protocol/Message.hs -------------------------------------------------------------------------------- /lsp-types/src/Language/LSP/Protocol/Message/Lens.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/src/Language/LSP/Protocol/Message/Lens.hs -------------------------------------------------------------------------------- /lsp-types/src/Language/LSP/Protocol/Message/LspId.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/src/Language/LSP/Protocol/Message/LspId.hs -------------------------------------------------------------------------------- /lsp-types/src/Language/LSP/Protocol/Message/Meta.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/src/Language/LSP/Protocol/Message/Meta.hs -------------------------------------------------------------------------------- /lsp-types/src/Language/LSP/Protocol/Message/Method.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/src/Language/LSP/Protocol/Message/Method.hs -------------------------------------------------------------------------------- /lsp-types/src/Language/LSP/Protocol/Message/Parsing.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/src/Language/LSP/Protocol/Message/Parsing.hs -------------------------------------------------------------------------------- /lsp-types/src/Language/LSP/Protocol/Message/Registration.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/src/Language/LSP/Protocol/Message/Registration.hs -------------------------------------------------------------------------------- /lsp-types/src/Language/LSP/Protocol/Message/Types.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/src/Language/LSP/Protocol/Message/Types.hs -------------------------------------------------------------------------------- /lsp-types/src/Language/LSP/Protocol/Meta.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/src/Language/LSP/Protocol/Meta.hs -------------------------------------------------------------------------------- /lsp-types/src/Language/LSP/Protocol/Types.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/src/Language/LSP/Protocol/Types.hs -------------------------------------------------------------------------------- /lsp-types/src/Language/LSP/Protocol/Types/CodeAction.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/src/Language/LSP/Protocol/Types/CodeAction.hs -------------------------------------------------------------------------------- /lsp-types/src/Language/LSP/Protocol/Types/Common.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/src/Language/LSP/Protocol/Types/Common.hs -------------------------------------------------------------------------------- /lsp-types/src/Language/LSP/Protocol/Types/Edit.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/src/Language/LSP/Protocol/Types/Edit.hs -------------------------------------------------------------------------------- /lsp-types/src/Language/LSP/Protocol/Types/Lens.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/src/Language/LSP/Protocol/Types/Lens.hs -------------------------------------------------------------------------------- /lsp-types/src/Language/LSP/Protocol/Types/Location.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/src/Language/LSP/Protocol/Types/Location.hs -------------------------------------------------------------------------------- /lsp-types/src/Language/LSP/Protocol/Types/LspEnum.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/src/Language/LSP/Protocol/Types/LspEnum.hs -------------------------------------------------------------------------------- /lsp-types/src/Language/LSP/Protocol/Types/MarkupContent.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/src/Language/LSP/Protocol/Types/MarkupContent.hs -------------------------------------------------------------------------------- /lsp-types/src/Language/LSP/Protocol/Types/Orphans.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/src/Language/LSP/Protocol/Types/Orphans.hs -------------------------------------------------------------------------------- /lsp-types/src/Language/LSP/Protocol/Types/Progress.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/src/Language/LSP/Protocol/Types/Progress.hs -------------------------------------------------------------------------------- /lsp-types/src/Language/LSP/Protocol/Types/SemanticTokens.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/src/Language/LSP/Protocol/Types/SemanticTokens.hs -------------------------------------------------------------------------------- /lsp-types/src/Language/LSP/Protocol/Types/Singletons.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/src/Language/LSP/Protocol/Types/Singletons.hs -------------------------------------------------------------------------------- /lsp-types/src/Language/LSP/Protocol/Types/Uri.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/src/Language/LSP/Protocol/Types/Uri.hs -------------------------------------------------------------------------------- /lsp-types/src/Language/LSP/Protocol/Types/Uri/OsPath.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/src/Language/LSP/Protocol/Types/Uri/OsPath.hs -------------------------------------------------------------------------------- /lsp-types/src/Language/LSP/Protocol/Types/WatchKinds.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/src/Language/LSP/Protocol/Types/WatchKinds.hs -------------------------------------------------------------------------------- /lsp-types/src/Language/LSP/Protocol/Utils/Misc.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/src/Language/LSP/Protocol/Utils/Misc.hs -------------------------------------------------------------------------------- /lsp-types/src/Language/LSP/Protocol/Utils/SMethodMap.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/src/Language/LSP/Protocol/Utils/SMethodMap.hs -------------------------------------------------------------------------------- /lsp-types/test/CapabilitiesSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/test/CapabilitiesSpec.hs -------------------------------------------------------------------------------- /lsp-types/test/JsonSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/test/JsonSpec.hs -------------------------------------------------------------------------------- /lsp-types/test/LocationSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/test/LocationSpec.hs -------------------------------------------------------------------------------- /lsp-types/test/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/test/Main.hs -------------------------------------------------------------------------------- /lsp-types/test/MethodSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/test/MethodSpec.hs -------------------------------------------------------------------------------- /lsp-types/test/SemanticTokensSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/test/SemanticTokensSpec.hs -------------------------------------------------------------------------------- /lsp-types/test/ServerCapabilitiesSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/test/ServerCapabilitiesSpec.hs -------------------------------------------------------------------------------- /lsp-types/test/Spec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/test/Spec.hs -------------------------------------------------------------------------------- /lsp-types/test/TypesSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/test/TypesSpec.hs -------------------------------------------------------------------------------- /lsp-types/test/URIFilePathSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/test/URIFilePathSpec.hs -------------------------------------------------------------------------------- /lsp-types/test/WorkspaceEditSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp-types/test/WorkspaceEditSpec.hs -------------------------------------------------------------------------------- /lsp/ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp/ChangeLog.md -------------------------------------------------------------------------------- /lsp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp/LICENSE -------------------------------------------------------------------------------- /lsp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp/README.md -------------------------------------------------------------------------------- /lsp/example/Reactor.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp/example/Reactor.hs -------------------------------------------------------------------------------- /lsp/example/Simple.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp/example/Simple.hs -------------------------------------------------------------------------------- /lsp/lsp.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp/lsp.cabal -------------------------------------------------------------------------------- /lsp/src/Language/LSP/Diagnostics.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp/src/Language/LSP/Diagnostics.hs -------------------------------------------------------------------------------- /lsp/src/Language/LSP/Logging.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp/src/Language/LSP/Logging.hs -------------------------------------------------------------------------------- /lsp/src/Language/LSP/Server.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp/src/Language/LSP/Server.hs -------------------------------------------------------------------------------- /lsp/src/Language/LSP/Server/Control.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp/src/Language/LSP/Server/Control.hs -------------------------------------------------------------------------------- /lsp/src/Language/LSP/Server/Core.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp/src/Language/LSP/Server/Core.hs -------------------------------------------------------------------------------- /lsp/src/Language/LSP/Server/Processing.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp/src/Language/LSP/Server/Processing.hs -------------------------------------------------------------------------------- /lsp/src/Language/LSP/Server/Progress.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp/src/Language/LSP/Server/Progress.hs -------------------------------------------------------------------------------- /lsp/src/Language/LSP/VFS.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp/src/Language/LSP/VFS.hs -------------------------------------------------------------------------------- /lsp/test/DiagnosticsSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp/test/DiagnosticsSpec.hs -------------------------------------------------------------------------------- /lsp/test/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp/test/Main.hs -------------------------------------------------------------------------------- /lsp/test/Spec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp/test/Spec.hs -------------------------------------------------------------------------------- /lsp/test/VspSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/lsp/test/VspSpec.hs -------------------------------------------------------------------------------- /shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell/lsp/HEAD/shell.nix --------------------------------------------------------------------------------