Skip to content

Commit

Permalink
Restore ghcide ref
Browse files Browse the repository at this point in the history
  • Loading branch information
jneira committed Sep 8, 2020
1 parent 045aea0 commit 83571f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ghcide
Submodule ghcide updated 51 files
+0 −9 .azure/linux-stack.yml
+1 −10 .azure/windows-stack.yml
+4 −0 .ghci
+56 −0 CHANGELOG.md
+7 −7 README.md
+6 −5 exe/Main.hs
+21 −13 ghcide.cabal
+26 −0 nix/sources.json
+134 −0 nix/sources.nix
+26 −14 session-loader/Development/IDE/Session.hs
+107 −0 shell.nix
+1 −1 src-ghc810/Development/IDE/GHC/HieAst.hs
+1 −1 src-ghc86/Development/IDE/GHC/HieAst.hs
+1 −1 src-ghc88/Development/IDE/GHC/HieAst.hs
+46 −0 src/Development/IDE.hs
+10 −8 src/Development/IDE/Core/FileStore.hs
+15 −3 src/Development/IDE/Core/OfInterest.hs
+1 −1 src/Development/IDE/Core/Preprocessor.hs
+9 −0 src/Development/IDE/Core/RuleTypes.hs
+12 −14 src/Development/IDE/Core/Rules.hs
+1 −1 src/Development/IDE/Core/Service.hs
+67 −104 src/Development/IDE/Core/Shake.hs
+59 −2 src/Development/IDE/GHC/Compat.hs
+29 −17 src/Development/IDE/GHC/Util.hs
+1 −2 src/Development/IDE/LSP/HoverDefinition.hs
+2 −2 src/Development/IDE/LSP/LanguageServer.hs
+7 −9 src/Development/IDE/LSP/Notifications.hs
+8 −6 src/Development/IDE/LSP/Outline.hs
+239 −105 src/Development/IDE/Plugin/CodeAction.hs
+20 −1 src/Development/IDE/Plugin/CodeAction/PositionIndexed.hs
+3 −40 src/Development/IDE/Plugin/CodeAction/RuleTypes.hs
+8 −24 src/Development/IDE/Plugin/CodeAction/Rules.hs
+2 −1 src/Development/IDE/Plugin/Completions/Logic.hs
+16 −8 src/Development/IDE/Spans/Common.hs
+75 −0 src/Development/IDE/Types/Action.hs
+75 −0 src/Development/IDE/Types/Exports.hs
+24 −4 src/Development/IDE/Types/Options.hs
+0 −1 stack.yaml
+0 −1 stack84.yaml
+0 −1 stack88.yaml
+1 −1 test/data/boot/hie.yaml
+1 −1 test/data/hover/GotoHover.hs
+8 −0 test/data/ignore-fatal/IgnoreFatal.hs
+1 −0 test/data/ignore-fatal/cabal.project
+4 −0 test/data/ignore-fatal/hie.yaml
+10 −0 test/data/ignore-fatal/ignore-fatal.cabal
+3 −0 test/data/rootUri/dirA/Foo.hs
+9 −0 test/data/rootUri/dirA/foo.cabal
+3 −0 test/data/rootUri/dirB/Foo.hs
+9 −0 test/data/rootUri/dirB/foo.cabal
+207 −43 test/exe/Main.hs

0 comments on commit 83571f0

Please sign in to comment.