aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_lsp_server
Commit message (Collapse)AuthorAgeFilesLines
* Refactor symbol resolve APIAleksey Kladov2018-12-081-7/+8
| | | | | Introduce ReferenceResolution to avoid nesting to many non-nominal types.
* grand module renameAleksey Kladov2018-12-081-0/+0
|
* reformatAleksey Kladov2018-12-081-1/+0
|
* Add a better text for hover and stop duplicating work done in ↵DJMcNab2018-12-081-21/+22
| | | | approximatelly_resolve_symbol
* Fix the range of a hover request to be more in line with prior artDJMcNab2018-12-081-1/+8
|
* Add test for code actionsFlorian Diebold2018-12-061-1/+60
|
* Use json comparison code from cargo for heavy testsFlorian Diebold2018-12-062-17/+20
|
* modernize moreAleksey Kladov2018-12-0610-56/+42
|
* drop extern cratesAleksey Kladov2018-12-063-26/+0
|
* Fix diagnostic fixes showing up everywhereFlorian Diebold2018-12-021-2/+2
| | | | | The LSP code action request always returned the fixes for all diagnostics anywhere in the file, because of a shadowed variable.
* Put derive backAleksey Kladov2018-12-021-24/+1
| | | | It is used in this file
* Put map backJeremy A. Kolb2018-11-301-1/+1
|
* Clippy lintsJeremy A. Kolb2018-11-294-16/+13
|
* move db basics to ra_dbAleksey Kladov2018-11-281-1/+1
| | | | This should allow to move hir to a separate crate
* hack around nested librariesAleksey Kladov2018-11-262-3/+33
|
* Use `:` as a trigger character for completionAleksey Kladov2018-11-212-2/+24
| | | | | | | | | Note that VSCode asks for completion after *first* `:` as well: use crate: we use hacks to protect against that, and to give completions only after the second `:`.
* Rename col to col_utf16Adolfo Ochagavía2018-11-161-6/+11
|
* Support UTF-16 chars in LineIndexAdolfo Ochagavía2018-11-161-2/+0
|
* Fix the testAleksey Kladov2018-11-081-1/+1
|
* workspace-symbols function for EmacsAleksey Kladov2018-11-082-11/+34
|
* eglot worksapce symbolAleksey Kladov2018-11-081-1/+24
|
* Rename File -> SourceFileNodeAleksey Kladov2018-11-071-2/+2
|
* Cargo updateJeremy A. Kolb2018-11-071-1/+1
|
* Rustfmt to pass CIJeremy A. Kolb2018-11-071-2/+2
|
* Remove unused variableJeremy A. Kolb2018-11-071-1/+0
|
* Show documentation for hover requestsJeremy A. Kolb2018-11-073-3/+29
|
* Use closing paren as a trigger characterJeremy A. Kolb2018-11-051-1/+1
| | | | | This seems counter-intuitive based on the concept of "trigger character" but it provides a better function signature experience.
* Use FilePosition everywhereAleksey Kladov2018-11-052-41/+48
|
* don't send backtraces for canceled requestsAleksey Kladov2018-11-051-5/+15
|
* Fully add inline modules to module treeAleksey Kladov2018-11-052-4/+6
|
* Use Default everywhereAleksey Kladov2018-11-043-14/+3
|
* Reformat allAleksey Kladov2018-10-318-74/+74
|
* Useful comments from function signaturesJeremy A. Kolb2018-10-311-2/+11
|
* extract fixture parsingAleksey Kladov2018-10-312-22/+8
|
* Encapsulate CrateGraph a bitAleksey Kladov2018-10-251-6/+3
|
* use correct file when resolving callablesAleksey Kladov2018-10-251-2/+11
|
* Improve loggingAleksey Kladov2018-10-251-4/+16
|
* Store all the data in the Salsa DatabaseAleksey Kladov2018-10-252-27/+56
|
* Fix the testAleksey Kladov2018-10-251-17/+41
|
* More informative lable for check runnableAleksey Kladov2018-10-251-3/+10
|
* specify package when running cargo checkAleksey Kladov2018-10-251-46/+65
|
* Always add cargo check as a runnableAleksey Kladov2018-10-251-0/+8
|
* Cargo Update runJeremy A. Kolb2018-10-231-1/+1
| | | | | | | Bump relative-path to 0.4.0 Failure 0.1.3 to fix leak with downcast Updated everything else too
* Merge #151bors[bot]2018-10-234-4/+24
|\ | | | | | | | | | | | | | | 151: Add LspError to explicity return errors from LSP handlers r=matklad a=kjeremy Fixes #145 Co-authored-by: Jeremy A. Kolb <[email protected]>
| * Add LspError to explicity return errors from LSP handlersJeremy A. Kolb2018-10-224-4/+24
| | | | | | | | Fixes #145
* | Merge #152bors[bot]2018-10-221-2/+2
|\ \ | | | | | | | | | | | | | | | | | | | | | 152: Fix typo r=matklad a=kjeremy Co-authored-by: Jeremy A. Kolb <[email protected]>
| * | Fix typoJeremy A. Kolb2018-10-221-2/+2
| |/
* | Merge #138bors[bot]2018-10-227-16/+14
|\ \ | |/ |/| | | | | | | | | | | | | | | | | | | 138: Fix some clippy lints r=matklad a=alanhdu I went ahead and fixed all the clippy lints (there were a couple I thought would be better unfixed and added `cfg` statements to allow them) and also re-enabled clippy and rustfmt in CI. They were disabled with `no time to explain, disable clippy checks`, so hopefully this won't go against whatever the reason at the time was :laughing:. One question about the CI though: right now, it's an allowed failure that runs against the latest nightly each time. Would it be better to pin it to a specific nightly (or use the `beta` versions) to lower the churn? Co-authored-by: Alan Du <[email protected]>
| * Revert "clippy: Fix new_ret_no_self"Alan Du2018-10-201-1/+1
| | | | | | | | This reverts commit 2ae9dfa812ccf18867373f77a106161378a6d91d.
| * clippy: cast_losslessAlan Du2018-10-181-2/+2
| |