aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Merge #6592bors[bot]2020-11-191-16/+16
|\ | | | | | | | | | | | | | | 6592: cargo update r=kjeremy a=kjeremy Co-authored-by: kjeremy <[email protected]>
| * cargo updatekjeremy2020-11-191-16/+16
|/
* Merge #6585bors[bot]2020-11-188-9/+149
|\ | | | | | | | | | | | | | | | | | | | | | | | | 6585: Link rustc error page and clippy lint page via CodeDescription r=kjeremy a=Veykril Fixes #6371 This makes the error code in here clickable, same for clippy lints ![image](https://user-images.githubusercontent.com/3757771/99459468-6d110b00-292e-11eb-9cde-d43ec9cebc09.png) For clippy I just chose the master build of the site as I believe that to be pretty much always the best fitting. Co-authored-by: Lukas Wirth <[email protected]>
| * Fill code_description for rust_analyzer diagnosticsLukas Wirth2020-11-181-1/+8
| |
| * update diagnostics test_data with code_description changesLukas Wirth2020-11-186-6/+108
| |
| * Link clippy lint codes in diagnosticsLukas Wirth2020-11-181-7/+22
| |
| * Link rustc error codes in diagnosticsLukas Wirth2020-11-181-3/+19
|/
*---. Merge #6577 #6579 #6581bors[bot]2020-11-176-25/+37
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 6577: fix typos in syntax.md r=matklad a=jakobhellermann 6579: cargo update and add new license r=matklad a=kjeremy 6581: Use vscode-languageclient 7.0.0-next.14 r=matklad a=kjeremy Co-authored-by: Jakob Hellermann <[email protected]> Co-authored-by: kjeremy <[email protected]>
| | | * Use vscode-languageclient 7.0.0-next.14kjeremy2020-11-173-13/+15
| | | |
| | * | cargo update and add new licensekjeremy2020-11-172-10/+20
| | | |
| * | | fix typos in syntax.mdJakob Hellermann2020-11-171-2/+2
| |/ /
* | | Merge #6553bors[bot]2020-11-1722-96/+369
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 6553: Auto imports in completion r=matklad a=SomeoneToIgnore ![completion](https://user-images.githubusercontent.com/2690773/99155339-ae4fb380-26bf-11eb-805a-655b1706ce70.gif) Closes https://github.com/rust-analyzer/rust-analyzer/issues/1062 but does not handle the completion order, since it's a separate task for https://github.com/rust-analyzer/rust-analyzer/issues/4922 , https://github.com/rust-analyzer/rust-analyzer/issues/4922 and maybe something else. 2 quirks in the current implementation: * traits are not auto imported during method completion If I understand the current situation right, we cannot search for traits by a **part** of a method name, we need a full name with correct case to get a trait for it. * VSCode (?) autocompletion is not as rigid as in Intellij Rust as you can notice on the animation. Intellij is able to refresh the completions on every new symbol added, yet VS Code does not query the completions on every symbol for me. With a few debug prints placed in RA, I've observed the following behaviour: after the first set of completion suggestions is received, next symbol input does not trigger a server request, if the completions contain this symbol. When more symbols added, the existing completion suggestions are filtered out until none are left and only then, on the next symbol it queries for completions. It seems like the only alternative to get an updated set of results is to manually retrigger it with Esc and Ctrl + Space. Despite the eerie latter bullet, the completion seems to work pretty fine and fast nontheless, but if you have any ideas on how to make it more smooth, I'll gladly try it out. Co-authored-by: Kirill Bulatov <[email protected]>
| * | | Actually enable eager completionKirill Bulatov2020-11-171-1/+1
| | | |
| * | | Avoid turning completion objects into buildersKirill Bulatov2020-11-169-84/+117
| | | |
| * | | Remove query aliasesKirill Bulatov2020-11-163-10/+10
| | | |
| * | | Properly fill the completion settingsKirill Bulatov2020-11-161-4/+5
| | | |
| * | | Fix the other testKirill Bulatov2020-11-162-3/+25
| | | |
| * | | Qualify autoimport completion suggestionsKirill Bulatov2020-11-162-16/+43
| | | |
| * | | Better filter mod pathsKirill Bulatov2020-11-162-26/+28
| | | |
| * | | Move autoimport completion into the unqialified_path moduleKirill Bulatov2020-11-165-156/+139
| | | |
| * | | Omit modules during autocompletionKirill Bulatov2020-11-162-67/+118
| | | |
| * | | Tweak the search limits a bitKirill Bulatov2020-11-162-3/+6
| | | |
| * | | Reuse existing element renderingKirill Bulatov2020-11-164-88/+74
| | | |
| * | | Use imports_locatorKirill Bulatov2020-11-166-86/+119
| | | |
| * | | Rename the moduleKirill Bulatov2020-11-162-6/+2
| | | |
| * | | Allow to configure the merge behaviorKirill Bulatov2020-11-162-5/+6
| | | |
| * | | Add braces to functions and macrosKirill Bulatov2020-11-162-39/+99
| | | |
| * | | Tidy up the testsKirill Bulatov2020-11-161-49/+15
| | | |
| * | | Use rewriter api to add both changesKirill Bulatov2020-11-161-11/+51
| | | |
| * | | Add imports in auto completionKirill Bulatov2020-11-1614-130/+199
| | | |
* | | | Merge #6582bors[bot]2020-11-174-12/+38
|\ \ \ \ | |_|_|/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 6582: Fill the diagnostic code field in publish_diagnostics r=kjeremy a=Veykril Fixes #6580 Before: ![Code_znn6VgLLH9](https://user-images.githubusercontent.com/3757771/99408084-213f7100-28f0-11eb-8317-3f5c2b93313d.png) After: ![Code_c4jJsvzOEA](https://user-images.githubusercontent.com/3757771/99408096-23093480-28f0-11eb-9bb2-8ebf2fb3d5a1.png) Co-authored-by: Lukas Wirth <[email protected]>
| * | | Fill the diagnostic code field in publish_diagnosticsLukas Wirth2020-11-174-12/+38
| | | |
* | | | Merge #6578bors[bot]2020-11-173-237/+246
|\ \ \ \ | |_|_|/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | 6578: Simpify project_model r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
| * | | SimplifyAleksey Kladov2020-11-171-54/+50
| | | |
| * | | Make code more readableAleksey Kladov2020-11-171-186/+207
| | | |
| * | | MinorAleksey Kladov2020-11-171-4/+4
| | | |
| * | | Remove dead codeAleksey Kladov2020-11-171-6/+0
| | | |
| * | | SimplifyAleksey Kladov2020-11-172-17/+15
|/ / /
* | | Merge #6575bors[bot]2020-11-171-270/+270
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 6575: Use standard code style for test fixtures r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
| * | | Use standard code style for test fixturesAleksey Kladov2020-11-171-270/+270
|/ / /
* | | Merge #6574bors[bot]2020-11-171-4/+69
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 6574: **Unwrap Block** supports stand-alone blocks r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
| * | | **Unwrap Block** supports stand-alone blocksAleksey Kladov2020-11-171-1/+68
| | | |
| * | | SimplifyAleksey Kladov2020-11-171-3/+1
| | | |
| * | | Assist target should point at *existing* codeAleksey Kladov2020-11-171-1/+1
|/ / /
* | | Merge #6573bors[bot]2020-11-176-18/+80
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 6573: Add **Ignore Test** assist r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
| * | | Add **Ignore Test** assistAleksey Kladov2020-11-176-18/+80
|/ / /
* | | Merge #6571bors[bot]2020-11-173-108/+75
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 6571: Cleanup project model r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
| * | | Remove needless allocAleksey Kladov2020-11-171-1/+1
| | | |
| * | | Compress codeAleksey Kladov2020-11-172-66/+42
| | | |
| * | | simplifyAleksey Kladov2020-11-171-41/+32
| | |/ | |/|