hls-explicit-fixity-plugin 2.3.0.0 → 2.4.0.0
raw patch · 2 files changed
+6/−7 lines, 2 filesdep ~ghcidedep ~hls-plugin-apidep ~hls-test-utils
Dependency ranges changed: ghcide, hls-plugin-api, hls-test-utils
Files
- hls-explicit-fixity-plugin.cabal +4/−6
- test/Main.hs +2/−1
hls-explicit-fixity-plugin.cabal view
@@ -1,6 +1,6 @@ cabal-version: 2.4 name: hls-explicit-fixity-plugin-version: 2.3.0.0+version: 2.4.0.0 synopsis: Show fixity explicitly while hovering description: Please see the README on GitHub at <https://github.com/haskell/haskell-language-server/tree/master/plugins/hls-explicit-fixity-plugin#readme>@@ -20,7 +20,6 @@ location: https://github.com/haskell/haskell-language-server.git library- buildable: True exposed-modules: Ide.Plugin.ExplicitFixity hs-source-dirs: src@@ -30,9 +29,9 @@ , deepseq , extra , ghc- , ghcide == 2.3.0.0+ , ghcide == 2.4.0.0 , hashable- , hls-plugin-api == 2.3.0.0+ , hls-plugin-api == 2.4.0.0 , lsp >=2.2 , text , transformers@@ -45,7 +44,6 @@ default-extensions: DataKinds test-suite tests- buildable: True type: exitcode-stdio-1.0 default-language: Haskell2010 hs-source-dirs: test@@ -55,5 +53,5 @@ , base , filepath , hls-explicit-fixity-plugin- , hls-test-utils == 2.3.0.0+ , hls-test-utils == 2.4.0.0 , text
test/Main.hs view
@@ -34,7 +34,8 @@ , hoverTest "(<|>)" (Position 21 8) "infixl 3 `<|>`" , hoverTest "fixity define" (Position 23 11) "infixr 7 `>>:`" , hoverTest "record" (Position 28 10) "infix 9 `>>::`"- , hoverTest "wildcards" (Position 30 5) "infixr 7 `>>:` \n \ninfix 9 `>>::`"+ , hoverTest "wildcards1" (Position 30 5) "infixr 7 `>>:`"+ , hoverTest "wildcards2" (Position 30 5) "infix 9 `>>::`" , hoverTest "function" (Position 32 11) "infixl 1 `f`" , hoverTest "signature" (Position 35 2) "infixr 9 `>>>:`" , hoverTest "operator" (Position 36 2) "infixr 9 `>>>:`"