1
1
mirror of https://github.com/haskell/lsp.git synced 2024-10-04 02:47:31 +03:00
lsp/.gitignore

23 lines
250 B
Plaintext
Raw Normal View History

/dist/
/dist-newstyle/
/TAGS
/ctags
/tags
/cabal.project.local
2019-04-21 02:00:22 +03:00
/cabal.project.local~
2021-03-06 20:19:45 +03:00
cabal.sandbox.config
.stack-work
2019-10-19 01:33:31 +03:00
stack*.yaml.lock
/.dir-locals.el
/.vscode
/.ghc.environment*
*.swp
*.swo
Squashed commit of the following: commit 6aa60a4d72e2309c28e897d3bbe037a4b1fc5022 Author: Zubin Duggal <zubin@cmi.ac.in> Date: Fri Jun 5 15:46:30 2020 +0530 Separate out static LanguageContextData from dynamic, introduce LspM, handle initialize specially commit 0cf607f215979d25f637c08b8d56b16011741416 Author: Zubin Duggal <zubin@cmi.ac.in> Date: Fri Jun 5 00:48:06 2020 +0530 Eliminate duplication of parsing logic commit cb8bd3546e71e71b179f59059b0e93669d0b3929 Author: Zubin Duggal <zubin@cmi.ac.in> Date: Thu Jun 4 23:01:05 2020 +0530 Import LSP types unqualified in Core and other cleanup commit bb7a3f8cd94065fcf4d39012b39ab6e2b855291a Author: Zubin Duggal <zubin@cmi.ac.in> Date: Thu Jun 4 19:16:09 2020 +0530 tweaks for lsp-test commit 58609e1e2ead29165b84fad74b03f0db3d29060c Author: Luke Lau <luke_lau@icloud.com> Date: Thu May 14 18:21:46 2020 +0100 Fix method type in Unregistration This could probably be backported commit 3f35d04dee069704551c53d13bb9357dacfbe1b3 Author: Luke Lau <luke_lau@icloud.com> Date: Tue May 12 18:03:58 2020 +0100 Add back erroneous deletion commit 63b80f6981251c796db56087ee551037c2b98985 Author: Luke Lau <luke_lau@icloud.com> Date: Tue May 12 17:58:48 2020 +0100 Update the example server commit 5514e76fd8c7223eea812fba3eafe279f14cd6e5 Author: Luke Lau <luke_lau@icloud.com> Date: Tue May 12 17:27:11 2020 +0100 Tidy up some stuff in Core, add getVersionedTextDoc When wanting to create textdocumentedits, you need to pass a versioned text doc identifier. But often times the request that you are working with only gives you an unversioned text doc identifier. This is a helper function to convert it to the appropriate version by looking it up in the VFS. commit aedaa2a1ff0d8171f8085ec2c84e1bebba3dbdf9 Merge: 56a2c9e bce18bc Author: Luke Lau <luke_lau@icloud.com> Date: Tue May 12 17:34:29 2020 +0100 Merge branch 'singleton-methods' of github.com:wz1000/haskell-lsp into singleton-methods commit bce18bcd344988e7e75990ff75ad1cb03be65f70 Author: Luke Lau <luke_lau@icloud.com> Date: Tue May 12 16:37:21 2020 +0100 Hide LSP ids from the users This changes the send function into two separate functions, where parameters are passed instead of raw messages. That way haskell-lsp can do the bookkeeping work of figuring out the appropriate request id, and we can get rid of MessageFuncs since the user no longer needs to construct messages from scratch. commit 2d651148fc691d9c1f819131a188e67792acacba Author: Luke Lau <luke_lau@icloud.com> Date: Mon May 11 16:40:55 2020 +0100 Rename old sendFunc -> sendMsg commit f08b599d8fbc1d21492245205c42690ad10dab6b Author: Luke Lau <luke_lau@icloud.com> Date: Sun May 10 20:43:25 2020 +0100 Fix haddock Was interpreting the pipe as a haddock commit 56a2c9ef477a1ea720cd4972037fc31e5b195381 Author: Luke Lau <luke_lau@icloud.com> Date: Mon May 11 16:40:55 2020 +0100 Rename old sendFunc -> sendMsg commit be92b485811f3758422ac52ac5f912e5b635b53e Author: Luke Lau <luke_lau@icloud.com> Date: Sun May 10 20:43:25 2020 +0100 Fix haddock Was interpreting the pipe as a haddock commit cafca9823faa2db5f960f5ce981497fb6395c3ef Author: Luke Lau <luke_lau@icloud.com> Date: Sun May 10 17:44:45 2020 +0100 Make *ResponseHandler newtypes commit a4fbbcf8cd3831d9ac089b169569cd5343637f11 Author: Luke Lau <luke_lau@icloud.com> Date: Sun May 10 17:16:01 2020 +0100 Add explicit type parameter to LookupFunc Needed to build on ghc-8.10 Also some whitespace fixes my editor seemed to throw in automatically commit 2c32c5611ac87b7898c30847eb0c68e3a177148a Author: Zubin Duggal <zubin@cmi.ac.in> Date: Fri May 8 19:13:10 2020 +0530 Add utility functions for parsing server and client messages commit 2d67cb5f3992a4272d6a92bb6acd49962ef0f4e3 Author: Zubin Duggal <zubin@cmi.ac.in> Date: Fri May 8 15:46:06 2020 +0530 Rename Message -> Method, Types -> Message, extract LspId into its own module commit c51dc57ea5638b09ae4336e1f087b38029306e7e Author: Zubin Duggal <zubin@cmi.ac.in> Date: Fri May 8 15:03:03 2020 +0530 Make ResponseMessage use Either again commit 4b9341fcc60a9de60e0462482c77f487a368b82a Author: Zubin Duggal <zubin@cmi.ac.in> Date: Fri May 8 14:11:56 2020 +0530 Safer API for IxMap commit f2c617c1eb5c1bd83e12b2b4baee0f81dacb839d Author: Zubin Duggal <zubin@cmi.ac.in> Date: Fri May 8 13:07:43 2020 +0530 Split out IxMap into new module commit ddd85551758d1e657ebf1c3f9af1c599b46f155c Author: Zubin Duggal <zubin@cmi.ac.in> Date: Fri May 8 12:04:35 2020 +0530 move synonyms to new module commit a7ffa3e174b4e7de6466f6505d026d2645d5a331 Author: Zubin Duggal <zubin@cmi.ac.in> Date: Fri May 8 11:34:42 2020 +0530 remove capturing and misc spring cleaning commit 8e91bdb8fb246c3de4dd1339a76dd5cdaddbb79c Author: Zubin Duggal <zubin@cmi.ac.in> Date: Fri May 8 11:07:14 2020 +0530 vastly improve the TH for generating FromJSON method instances commit f6403bfecbefc3d3744f6af2d31e8a202cc9a364 Author: Zubin Duggal <zubin@cmi.ac.in> Date: Fri May 8 02:55:51 2020 +0530 Hack together some nasty looking TH to reduce SMethod FromJSON boilerplate commit b9ac06752e17e65809d088f6ed120fbc87a9672e Author: Zubin Duggal <zubin@cmi.ac.in> Date: Fri May 8 01:36:21 2020 +0530 Cleanup Core.hs commit 0c155536677914c5d90e491ea6e2461c52b2463e Author: Zubin Duggal <zubin@cmi.ac.in> Date: Thu May 7 20:33:04 2020 +0530 fix clientMethodJSON/serverMethodJSON commit 3f28fb238fb12e49ef2a28e78fe728bcd56b1811 Merge: c84e4e0 2ff1129 Author: Zubin Duggal <zubin@cmi.ac.in> Date: Thu May 7 18:14:23 2020 +0530 Merge branch 'master' of https://github.com/alanz/haskell-lsp into singleton-methods commit c84e4e0ce6cfacaa28e3ea836ebfb8c9539152e1 Merge: c194d51 c19ed85 Author: Zubin Duggal <zubin@cmi.ac.in> Date: Wed Apr 29 00:00:07 2020 +0530 Merge branch 'master' of https://github.com/alanz/haskell-lsp into singleton-methods commit c194d513cc8cc58ad485698727965c580fe2d536 Author: Zubin Duggal <zubin@cmi.ac.in> Date: Sat Apr 25 00:05:23 2020 +0530 Redesign methods once more commit bfb3b55526270005fa9c7a072c511dff83cf6059 Author: Zubin Duggal <zubin@cmi.ac.in> Date: Fri Dec 20 16:23:08 2019 +0530 Fix merge commit a098073e685461d1f68497016ae2b021f868359b Merge: 4cc2902 5497e9f Author: Zubin Duggal <zubin@cmi.ac.in> Date: Tue Dec 17 17:14:40 2019 +0530 Merge branch 'master' of https://github.com/alanz/haskell-lsp into singleton-methods commit 4cc2902d92b01e102b1a7b41c5ce28d1c31ceb76 Author: Zubin Duggal <zubin@cmi.ac.in> Date: Sat Jul 13 17:01:37 2019 +0530 Dependent types, type safe responses and methods
2020-08-04 15:17:54 +03:00
*.orig
*.DS_Store
.hspec-failures
2021-03-06 20:19:45 +03:00
hie
.hie
hie.yaml
.envrc