aboutsummaryrefslogtreecommitdiff
path: root/app
Commit message (Collapse)AuthorAgeFilesLines
* Add support for GHC 8.6.3alexwl2018-12-231-1/+4
|
* Replace Vector.fromList with Vector.fromListNalexwl2018-12-131-9/+3
| | | | Vector.fromListN allocates less memory and allows to remove the call to Vector.force before compaction ('compact $ Vector.fromList [1,2,3]' crashes, 'compact $ Vector.fromListN 3 [1,2,3]' doesn't crash)
* Add cross-package 'find references'Alexey Kiryushin2018-11-161-23/+74
|
* Embed static assets in haskell-code-server executable.alexwl2018-11-071-2/+23
| | | | When there is no --js-path option, haskell-code-server serves embedded static assets.
* Add support for GHC 8.4.4alexwl2018-11-041-1/+4
|
* Show multiple references to an identifier on the same line as one item in a ↵alexwl2018-10-251-24/+29
| | | | list of references
* WIP. It compiles with ghc-8.4.3, but not all features of the indexer are ↵alexwl2018-10-092-3/+8
| | | | supported yet.
* Initial commitalexwl2018-10-022-0/+1222