Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | more fixes to ghcutils | Yuchen Pei | 2022-06-02 | 1 | -28/+24 | |
| | ||||||
* | fixing more ghcutils | Yuchen Pei | 2022-06-01 | 1 | -106/+63 | |
| | ||||||
* | fixing patsyn | Yuchen Pei | 2022-05-31 | 1 | -15/+27 | |
| | ||||||
* | porting to ghc9.2.2: fixing ghcutils | Yuchen Pei | 2022-05-26 | 2 | -95/+141 | |
| | ||||||
* | porting to ghc9.2.2: fixing types.hs | Yuchen Pei | 2022-05-16 | 1 | -5/+9 | |
| | ||||||
* | Add stack-8.8.3.yaml (LTS 15.4) | alexwl | 2020-03-22 | 2 | -6/+3 | |
| | ||||||
* | Update jstree to 3.3.9 | alexwl | 2020-02-16 | 7 | -148/+151 | |
| | ||||||
* | Update stack-8.8.1.yaml | alexwl | 2019-11-29 | 1 | -32/+2 | |
| | ||||||
* | Make it compile with GHC-8.8.1 (Stackage nightly-2019-09-28) | alexwl | 2019-09-29 | 4 | -33/+120 | |
| | ||||||
* | Add check for .cabal file | alexwl | 2019-09-02 | 1 | -8/+30 | |
| | ||||||
* | Add stack.yaml.lock to .gitignore | alexwl | 2019-08-21 | 1 | -0/+2 | |
| | ||||||
* | Fix 'unterminated #else' | alexwl | 2019-08-21 | 1 | -0/+1 | |
| | ||||||
* | Delete trailing whitespace (#42) | Avi Dessauer | 2019-08-21 | 67 | -639/+638 | |
| | ||||||
* | Bump 8.6.5 plans to lts-14 (#41) | Avi Dessauer | 2019-08-21 | 3 | -2/+10 | |
| | ||||||
* | Fail immediately when a GHC mismatch is detected. Closes #40. | alexwl | 2019-08-03 | 1 | -10/+8 | |
| | ||||||
* | Migrate stack v2 (#39) | Shinya Yamaguchi | 2019-07-17 | 7 | -16/+7 | |
| | ||||||
* | Refactor 'addHeaders' function | alexwl | 2019-06-09 | 1 | -25/+32 | |
| | ||||||
* | Update README | alexwl | 2019-06-01 | 1 | -4/+12 | |
| | ||||||
* | Update description of server options | alexwl | 2019-05-26 | 1 | -4/+4 | |
| | ||||||
* | Code cleanup: fix warnings | alexwl | 2019-05-17 | 10 | -88/+94 | |
| | ||||||
* | Fix circleci config | alexwl | 2019-05-08 | 1 | -1/+1 | |
| | ||||||
* | Update circleci cache key | alexwl | 2019-05-08 | 1 | -1/+1 | |
| | ||||||
* | Add support for GHC 8.6.5 | alexwl | 2019-05-08 | 10 | -8/+37 | |
| | ||||||
* | Fix GHC version check | alexwl | 2019-04-28 | 1 | -51/+16 | |
| | ||||||
* | Update README | alexwl | 2019-04-26 | 1 | -5/+2 | |
| | ||||||
* | Add an option to sort files by name/type | alexwl | 2019-04-24 | 8 | -1449/+1464 | |
| | ||||||
* | Remove unnecessary semicolon | alexwl | 2019-04-24 | 1 | -1/+1 | |
| | ||||||
* | Add CircleCI config | alexwl | 2019-04-11 | 1 | -0/+78 | |
| | ||||||
* | Fix identifier search URL after the package has changed | alexwl | 2019-04-04 | 6 | -1425/+1449 | |
| | ||||||
* | Update the bug report URL | alexwl | 2019-03-29 | 1 | -1/+1 | |
| | ||||||
* | Add GHC version check | alexwl | 2019-03-27 | 2 | -24/+73 | |
| | ||||||
* | Update parsePackagesPath so that --package and --packages options can be ↵ | alexwl | 2019-03-26 | 1 | -3/+9 | |
| | | | | specified independently | |||||
* | Allow specifying both --packages and --package. (#31) | Ian Jeffries | 2019-03-26 | 1 | -16/+25 | |
| | | | This can be useful if you've stored the dependencies of your application in one directory, but have your application in another directory. | |||||
* | Add dependencies to install.hs | alexwl | 2019-03-24 | 1 | -0/+1 | |
| | ||||||
* | Remove dependency on Shake | alexwl | 2019-03-24 | 1 | -1/+9 | |
| | ||||||
* | Fix typo | alexwl | 2019-03-24 | 1 | -1/+1 | |
| | ||||||
* | Add stack-8.6.4.yaml | alexwl | 2019-03-24 | 2 | -1/+9 | |
| | ||||||
* | Add script to install multiple versions at once. (#29) | Ian Jeffries | 2019-03-24 | 1 | -0/+162 | |
| | | | | | | | | | | | | | | | | Eg (given that my local bin path for the project is set to ./.bin in my stack.yaml): $ ./install.hs <lots out output> $ ls .bin haskell-code-indexer-8.0.2* haskell-code-indexer-8.4.4* haskell-code-indexer-8.2.2* haskell-code-indexer-8.6.3* haskell-code-indexer-8.4.3* haskell-code-server* Note that it works by installing and then moving the `haskell-code-indexer` executable in your project's bin to `haskell-code-indexer-X-Y-Z`. So if you already have a plain `haskell-code-indexer` executable before the run it will be deleted. It uses plain IO instead of Shake because Shake runs actions in unpredictable order. One of the goals of the script is that it will install haskell-code-server and the latest haskell-code-indexer as soon as possible, so that it's useful even if you have to cancel the run for some reason. Shake was running the haskell-code-indexer command at the correct time, but then waiting to copy it to its -X-Y-Z final home until near the end of the run. (Also this is really just a simple install script, we don't need another layer of caching from Shake for it.) | |||||
* | Update README | alexwl | 2019-03-23 | 1 | -0/+2 | |
| | ||||||
* | Default --package to '.' (#27) | Ian Jeffries | 2019-03-23 | 2 | -2/+5 | |
| | ||||||
* | Hide the left panel by default on small screens; reduce initial-scale | alexwl | 2019-03-23 | 4 | -14/+18 | |
| | ||||||
* | Add support for GHC 8.6.4 | alexwl | 2019-03-14 | 8 | -6/+31 | |
| | ||||||
* | Fix search results: add a package name and a module name of an identifier ↵ | alexwl | 2019-03-08 | 6 | -1441/+1419 | |
| | | | | that doesn't have exact location info | |||||
* | Fix 'go to definition' on the Packages page | alexwl | 2019-03-08 | 1 | -1/+2 | |
| | ||||||
* | Remove unused callback | alexwl | 2019-03-08 | 1 | -4/+2 | |
| | ||||||
* | Update README | alexwl | 2019-02-26 | 1 | -0/+9 | |
| | ||||||
* | Adds an option to use public Hoogle JSON API ↵ | alexwl | 2019-02-20 | 10 | -1373/+1523 | |
| | | | | (https://github.com/ndmitchell/hoogle/blob/3dbf68bfd701f942d3af2e6debb74a0a78cd392e/docs/API.md#json-api) to get documentation for not indexed packages. Closes #21. | |||||
* | Remove unused variables and functions | alexwl | 2019-02-20 | 2 | -9/+4 | |
| | ||||||
* | Optimize the process of adding links to Haskell language extension docs | alexwl | 2019-02-14 | 3 | -15/+18 | |
| | ||||||
* | Add a switch between 'search in the current package' and 'search in all ↵ | alexwl | 2019-02-13 | 8 | -86/+123 | |
| | | | | packages' on the package page |