Formatting Main.hs
This commit is contained in:
parent
9856476ebf
commit
95707100c2
@ -68,13 +68,14 @@ syncOptions = J.TextDocumentSyncOptions
|
||||
}
|
||||
|
||||
lspOptions :: Core.Options
|
||||
lspOptions = def { Core.textDocumentSync = Just syncOptions
|
||||
lspOptions = def
|
||||
{ Core.textDocumentSync = Just syncOptions
|
||||
, Core.executeCommandCommands = Just ["lsp-hello-command"]
|
||||
}
|
||||
|
||||
lspHandlers :: TChan FromClientMessage -> Core.Handlers
|
||||
lspHandlers rin
|
||||
= def { Core.initializedHandler = Just $ passHandler rin NotInitialized
|
||||
lspHandlers rin = def
|
||||
{ Core.initializedHandler = Just $ passHandler rin NotInitialized
|
||||
, Core.renameHandler = Just $ passHandler rin ReqRename
|
||||
, Core.hoverHandler = Just $ passHandler rin ReqHover
|
||||
, Core.didOpenTextDocumentNotificationHandler = Just $ passHandler rin NotDidOpenTextDocument
|
||||
|
Loading…
Reference in New Issue
Block a user