-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #76 from fwcd/fix-config-parsing
Fix config parsing
- Loading branch information
Showing
6 changed files
with
23 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{-# LANGUAGE OverloadedStrings #-} | ||
module Curry.LanguageServer.Handlers.Config | ||
( onConfigChange | ||
) where | ||
|
||
import Curry.LanguageServer.Config (Config (..)) | ||
import Curry.LanguageServer.Monad (LSM) | ||
import Curry.LanguageServer.Utils.Logging (infoM) | ||
|
||
onConfigChange :: Config -> LSM () | ||
onConfigChange cfg = do | ||
Check warning on line 11 in src/Curry/LanguageServer/Handlers/Config.hs GitHub Actions / build (ubuntu-latest)
Check warning on line 11 in src/Curry/LanguageServer/Handlers/Config.hs GitHub Actions / build (macos-latest)
|
||
infoM "Changed configuration" |
15 changes: 0 additions & 15 deletions
15
src/Curry/LanguageServer/Handlers/Workspace/Notifications.hs
This file was deleted.
Oops, something went wrong.