Rename sendRequest to request, sendRequest' to sendRequest
[opengl.git] / example / Main.hs
index c992b8ea67390760497b6fdee187078c428489a8..1e2e3baf3356b36f6eb09967a02ce2e7fbd12c0a 100644 (file)
@@ -3,7 +3,7 @@ import Control.Monad.IO.Class
 import Language.Haskell.LSP.Test
 import Language.Haskell.LSP.Types
 
-main = runSession "hie --lsp" "test/recordings/renamePass" $ do
+main = runSession "hie --lsp" fullCaps "test/data/renamePass" $ do
   docItem <- openDoc "Desktop/simple.hs" "haskell"
   
   -- Use your favourite favourite combinators.
@@ -11,8 +11,8 @@ main = runSession "hie --lsp" "test/recordings/renamePass" $ do
 
   -- Send requests and notifications and receive responses
   let params = DocumentSymbolParams docItem
-  response <- sendRequest TextDocumentDocumentSymbol params :: Session DocumentSymbolsResponse
-  liftIO $ print response
+  rsp <- request TextDocumentDocumentSymbol params :: Session DocumentSymbolsResponse
+  liftIO $ print rsp
 
   -- Or use one of the helper functions
   getDocumentSymbols docItem >>= liftIO . print