nvim-hs 2.1.0.3 → 2.1.0.4
raw patch · 2 files changed
+3/−8 lines, 2 filesdep ~megaparsecdep ~template-haskelldep ~unliftio-core
Dependency ranges changed: megaparsec, template-haskell, unliftio-core
Files
- library/Neovim/Context/Internal.hs +1/−6
- nvim-hs.cabal +2/−2
library/Neovim/Context/Internal.hs view
@@ -56,7 +56,7 @@ { unNeovim :: ResourceT (ReaderT (Config env) IO) a } deriving (Functor, Applicative, Monad, MonadIO- , MonadThrow)+ , MonadThrow, MonadUnliftIO) -- | User facing instance declaration for the reader state.@@ -70,11 +70,6 @@ instance MonadResource (Neovim env) where liftResourceT m = Neovim $ liftResourceT m---instance MonadUnliftIO (Neovim env) where- askUnliftIO = Neovim . withUnliftIO $ \x ->- return (UnliftIO (unliftIO x . unNeovim)) instance Fail.MonadFail (Neovim env) where
nvim-hs.cabal view
@@ -1,5 +1,5 @@ name: nvim-hs-version: 2.1.0.3+version: 2.1.0.4 synopsis: Haskell plugin backend for neovim description: This package provides a plugin provider for neovim. It allows you to write@@ -130,7 +130,7 @@ , transformers-base , typed-process , unliftio >= 0.2- , unliftio-core+ , unliftio-core >= 0.2 , utf8-string , vector , void