Expose underlying hover and gotoDefinition handlers (#490)

For use in haskell-language-server
This commit is contained in:
Alan Zimmerman 2020-03-19 10:41:09 +00:00 committed by GitHub
parent 8b328bb7c5
commit bd53aced70
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 1 deletions

View File

@ -111,6 +111,7 @@ library
Development.IDE.GHC.Error
Development.IDE.GHC.Util
Development.IDE.Import.DependencyInformation
Development.IDE.LSP.HoverDefinition
Development.IDE.LSP.LanguageServer
Development.IDE.LSP.Protocol
Development.IDE.LSP.Server
@ -131,7 +132,6 @@ library
Development.IDE.GHC.Orphans
Development.IDE.GHC.Warnings
Development.IDE.Import.FindImports
Development.IDE.LSP.HoverDefinition
Development.IDE.LSP.Notifications
Development.IDE.LSP.Outline
Development.IDE.Spans.AtPoint

View File

@ -6,6 +6,9 @@
module Development.IDE.LSP.HoverDefinition
( setHandlersHover
, setHandlersDefinition
-- * For haskell-language-server
, hover
, gotoDefinition
) where
import Development.IDE.Core.Rules