dhall-haskell/dhall-lsp-server/src/Dhall/LSP/Backend
Frederik Ramcke 4c1736b154 Improve rendering of types when annotating lets (#1222)
Previously the annotated type would have too many line-breaks, e.g. when
the result of annotating
  let id = \(A : Type) -> \(a : A) -> a
was
  let id :   ∀ ( A
  : Type
  )
  → ∀ ( a
  : A
  )
  → A = \(A : Type) -> \(a : A) -> a
while it should be
  let id : ∀(A : Type) → ∀(a : A) → A = \(A : Type) -> \(a : A) -> a
2019-08-08 15:16:07 +00:00
..
Completion.hs dhall-lsp-server: Implement completion support (#1190) 2019-08-07 14:11:59 +00:00
Dhall.hs Remove most uses of StandardVersion from the API (#1169) 2019-07-31 01:49:53 +00:00
Diagnostics.hs Only underline link in import (#1217) 2019-08-08 13:42:49 +00:00
Formatting.hs Implementation of toMap (#1041) 2019-07-15 08:28:29 -07:00
Freezing.hs dhall-lsp-server: Freezing imports (#1123) 2019-07-19 17:24:11 +00:00
Linting.hs Implementation of toMap (#1041) 2019-07-15 08:28:29 -07:00
Parsing.hs Only underline link in import (#1217) 2019-08-08 13:42:49 +00:00
ToJSON.hs dhall-lsp-server: Implement caching (#1040) 2019-07-01 17:30:32 +00:00
Typing.hs Improve rendering of types when annotating lets (#1222) 2019-08-08 15:16:07 +00:00