aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_lsp_server/src
Commit message (Collapse)AuthorAgeFilesLines
* modernize moreAleksey Kladov2018-12-068-52/+41
|
* drop extern cratesAleksey Kladov2018-12-062-19/+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
|
* 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
|
* 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
|
* 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
|
* 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
|
* Merge #151bors[bot]2018-10-233-4/+23
|\ | | | | | | | | | | | | | | 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-223-4/+23
| | | | | | | | 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
| |
| * Fix function callsAlan Du2018-10-184-5/+3
| |
| * clippy: type_complexityAlan Du2018-10-181-4/+6
| |
| * clippy: Fix new_ret_no_selfAlan Du2018-10-181-1/+1
| |
| * clippy: Use if lets and remove redundant returnsAlan Du2018-10-181-3/+1
| |
| * Clippy lint: single-character string constantAlan Du2018-10-181-2/+2
| |
* | Remove job handleAleksey Kladov2018-10-202-41/+18
| |
* | use pythonic import orderAleksey Kladov2018-10-204-9/+9
| | | | | | | | | | | | | | | | use std // blank line use extern crates // blank line use crate::{}
* | make more things cancelableAleksey Kladov2018-10-201-6/+6
| |
* | remove job tokensAleksey Kladov2018-10-201-31/+31
| |
* | make parent module cancelableAleksey Kladov2018-10-201-1/+1
| |
* | LSP: Add support for prepareRenameJeremy A. Kolb2018-10-192-1/+24
| |
* | Handle renaming of local variablesJeremy A. Kolb2018-10-183-2/+45
| |