Skip to content

Commit

Permalink
Fix typos in hls-cabal-fmt-plugin (#4399)
Browse files Browse the repository at this point in the history
  • Loading branch information
fendor authored Sep 9, 2024
1 parent 96c3aa7 commit f628754
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugins/hls-cabal-fmt-plugin/src/Ide/Plugin/CabalFmt.hs
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ provider recorder _ _ _ (FormatRange _) _ _ _ = do
throwError $ PluginInvalidParams "You cannot format a text-range using cabal-fmt."
provider recorder plId ideState _ FormatText contents nfp opts = do
let cabalFmtArgs = [ "--indent", show tabularSize]
cabalFmtExePath <- fmap T.unpack $ liftIO $ runAction "cabal-gild" ideState $ usePropertyAction #path plId properties
cabalFmtExePath <- fmap T.unpack $ liftIO $ runAction "cabal-fmt" ideState $ usePropertyAction #path plId properties
x <- liftIO $ findExecutable cabalFmtExePath
case x of
Just _ -> do
Expand All @@ -85,7 +85,7 @@ provider recorder plId ideState _ FormatText contents nfp opts = do
pure $ InL fmtDiff
Nothing -> do
log Error $ LogFormatterBinNotFound cabalFmtExePath
throwError (PluginInternalError "No installation of cabal-gild could be found. Please install it globally, or provide the full path to the executable")
throwError (PluginInternalError "No installation of cabal-fmt could be found. Please install it globally, or provide the full path to the executable")
where
fp = fromNormalizedFilePath nfp
tabularSize = opts ^. L.tabSize
Expand Down

0 comments on commit f628754

Please sign in to comment.