Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
| | * | | Apply suggestions from code review | vsrs | 2020-06-08 | 1 | -4/+8 | |
| | | | | ||||||
| | * | | Disable runnables lookup in macro-generated code. | vsrs | 2020-06-06 | 1 | -1/+10 | |
| | | | | ||||||
| | * | | Add Run|Debug hover actions | vsrs | 2020-06-06 | 2 | -9/+134 | |
| | | | | ||||||
| | * | | Preliminary runnables refactoring | vsrs | 2020-06-06 | 1 | -0/+78 | |
| | |/ | ||||||
| * | | Merge #4781 | bors[bot] | 2020-06-08 | 1 | -32/+27 | |
| |\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 4781: Remove redundancy in syntax highlighting tests r=matklad a=ltentrup Follow up from #4683. Improves syntax highlighting testing by introducing a function that contains the boilerplate comparison code. Keeps the `ra_fixture` argument in the first position, thus, the editor syntax highlighting injection still works. Co-authored-by: Leander Tentrup <[email protected]> | |||||
| | * | | Remove redundancy in syntax highlighting tests | Leander Tentrup | 2020-06-07 | 1 | -32/+27 | |
| | |/ | ||||||
| * / | Fix bug in lexer for format specifier where the `type` and `width` were not ↵ | Leander Tentrup | 2020-06-07 | 1 | -1/+1 | |
| |/ | | | | | | | correctly distinguished | |||||
| * | Fix type parameter defaults | Florian Diebold | 2020-06-05 | 2 | -3/+3 | |
| | | | | | | | | | | They should not be applied in expression or pattern contexts, unless there are other explicitly given type args. | |||||
| *-. | Merge #4729 #4748 | bors[bot] | 2020-06-05 | 2 | -13/+137 | |
| |\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 4729: Hover actions r=matklad a=vsrs This PR adds a `hoverActions` LSP extension and a `Go to Implementations` action as an example: ![hover_actions_impl](https://user-images.githubusercontent.com/62505555/83335732-6d9de280-a2b7-11ea-8cc3-75253d062fe0.gif) 4748: Add an `ImportMap` and use it to resolve item paths in `find_path` r=matklad a=jonas-schievink Removes the "go faster" queries I added in https://github.com/rust-analyzer/rust-analyzer/pull/4501 and https://github.com/rust-analyzer/rust-analyzer/pull/4506. I've checked this PR on the rustc code base and the assists are still fast. This should fix https://github.com/rust-analyzer/rust-analyzer/issues/4515. Note that this does introduce a change in behavior: We now always refer to items defined in external crates using paths through the external crate. Previously we could also use a local path (if for example the extern crate was reexported locally), as seen in the changed test. If that is undesired I can fix that, but the test didn't say why the previous behavior would be preferable. Co-authored-by: vsrs <[email protected]> Co-authored-by: Jonas Schievink <[email protected]> Co-authored-by: Jonas Schievink <[email protected]> | |||||
| | * | | Add enum hover action test. | vsrs | 2020-06-05 | 1 | -0/+15 | |
| | | | | ||||||
| | * | | Rebase on the latest master. | vsrs | 2020-06-05 | 1 | -3/+3 | |
| | | | | ||||||
| | * | | Code formatting | vsrs | 2020-06-05 | 2 | -4/+3 | |
| | | | | ||||||
| | * | | Add hover actions as LSP extension | vsrs | 2020-06-05 | 2 | -13/+123 | |
| | |/ | ||||||
| * / | Inlay Hints: more directly account for self param | Aleksey Kladov | 2020-06-05 | 1 | -2/+1 | |
| |/ | ||||||
| * | Merge branch 'master' into compute-lazy-assits | Mikhail Rakhmanov | 2020-06-03 | 12 | -20/+315 | |
| |\ | | | | | | | | | | | | | | | | # Conflicts: # crates/rust-analyzer/src/main_loop/handlers.rs # crates/rust-analyzer/src/to_proto.rs | |||||
| | * | Merge #4678 | bors[bot] | 2020-06-03 | 1 | -2/+11 | |
| | |\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 4678: Unsquish parameter types in tooltips for macro-generated functions r=aloucks a=aloucks Note the missing whitespace between `:` and the parameter type. Before: ![image](https://user-images.githubusercontent.com/221559/83364680-faf13d80-a370-11ea-96b7-a041969a4954.png) After: ![image](https://user-images.githubusercontent.com/221559/83364685-03e20f00-a371-11ea-9668-4e6ebcb81947.png) Co-authored-by: Aaron Loucks <[email protected]> | |||||
| | | * | Use split1 when formatting function signature params | Aaron Loucks | 2020-06-03 | 1 | -5/+3 | |
| | | | | ||||||
| | | * | Unsquish parameter types in tooltips for macro-generated functions | Aaron Loucks | 2020-05-31 | 1 | -1/+12 | |
| | | | | ||||||
| | * | | Consolidate documentation expansion and merging | Aaron Loucks | 2020-06-03 | 1 | -53/+7 | |
| | | | | | | | | | | | | | | | | | | | | | | | | Removes the duplicated `expand_doc_attrs` and `merge_doc_comments_and_attrs` functions from `ra_ide` and exposes the same functionality via `ra_hir::Documentation::from_ast`. | |||||
| | * | | Add basic hover and completion doc tests for macro generated items | Aaron Loucks | 2020-06-03 | 2 | -1/+181 | |
| | | | | ||||||
| | * | | Enable hover and autocomplete docs on macro generated items | Aaron Loucks | 2020-06-03 | 1 | -5/+50 | |
| | | | | ||||||
| | * | | Add highlight support for unsafe fn calls and raw ptr deref | Paul Daniel Faria | 2020-06-02 | 9 | -5/+112 | |
| | | | | ||||||
| * | | | Merge remote-tracking branch 'upstream/master' into compute-lazy-assits | Mikhail Rakhmanov | 2020-06-02 | 2 | -70/+246 | |
| |\| | | | | | | | | | | | | | | | | | | # Conflicts: # crates/rust-analyzer/src/to_proto.rs | |||||
| | * | | Fix tests | Aleksey Kladov | 2020-06-02 | 1 | -15/+210 | |
| | | | | ||||||
| | * | | New runnables API | Aleksey Kladov | 2020-06-02 | 2 | -55/+36 | |
| | | | | ||||||
| * | | | Preliminary implementation of lazy CodeAssits | Mikhail Rakhmanov | 2020-06-02 | 1 | -22/+17 | |
| |/ / | ||||||
| * | | Merge #4658 | bors[bot] | 2020-06-02 | 2 | -0/+2 | |
| |\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 4658: Fix problem with format string tokenization r=matklad a=ruabmbua Fixed by just not handling closing curlybrace escaping. Closes https://github.com/rust-analyzer/rust-analyzer/issues/4637 Co-authored-by: Roland Ruckerbauer <[email protected]> | |||||
| | * | | Test case for format string highlighting of closing curlybrace | Roland Ruckerbauer | 2020-05-30 | 2 | -0/+2 | |
| | | | | ||||||
* | | | | Fix tests and remove unused methods | Mikhail Rakhmanov | 2020-06-13 | 3 | -13/+6 | |
| | | | | ||||||
* | | | | Add more patterns, tests and fix keywords | Mikhail Rakhmanov | 2020-06-12 | 3 | -473/+297 | |
| | | | | ||||||
* | | | | Rewrite snapshot checks | Mikhail Rakhmanov | 2020-06-12 | 4 | -245/+100 | |
| | | | | ||||||
* | | | | Remove comment and incorrect assert | Mikhail Rakhmanov | 2020-06-12 | 1 | -7/+1 | |
| | | | | ||||||
* | | | | Return snapshots to tests | Mikhail Rakhmanov | 2020-06-12 | 1 | -18/+34 | |
| | | | | ||||||
* | | | | More assert refactoring | Mikhail Rakhmanov | 2020-06-12 | 1 | -7/+8 | |
| | | | | ||||||
* | | | | Add more pattern tests | Mikhail Rakhmanov | 2020-06-12 | 2 | -11/+50 | |
| | | | | ||||||
* | | | | New testing approach for keywords | Mikhail Rakhmanov | 2020-06-12 | 2 | -6/+56 | |
| | | | | ||||||
* | | | | Add few smoke tests for patterns and refactoring | Mikhail Rakhmanov | 2020-06-11 | 4 | -10/+111 | |
| | | | | ||||||
* | | | | Add more patterns and keywords | Mikhail Rakhmanov | 2020-06-11 | 3 | -55/+59 | |
| | | | | ||||||
* | | | | Add todo | Mikhail Rakhmanov | 2020-06-11 | 1 | -1/+2 | |
| | | | | ||||||
* | | | | Add more keywords | Mikhail Rakhmanov | 2020-06-11 | 4 | -234/+183 | |
| | | | | ||||||
* | | | | Add top level keywords completion | Mikhail Rakhmanov | 2020-06-02 | 1 | -1/+186 | |
|/ / / | ||||||
* | | | add test | Brennan Vincent | 2020-05-31 | 1 | -0/+27 | |
| | | | ||||||
* | | | Merge #4664 | bors[bot] | 2020-05-31 | 20 | -175/+363 | |
|\ \ \ | |/ / |/| | | | | | | | | | | | | | | | | | 4664: Generate feature documentation from code r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]> | |||||
| * | | Move the rest of the features to generated docs | Aleksey Kladov | 2020-05-31 | 6 | -142/+212 | |
| | | | ||||||
| * | | Doc more features | Aleksey Kladov | 2020-05-31 | 3 | -6/+40 | |
| | | | ||||||
| * | | Don't require module docs for Features and Assists | Aleksey Kladov | 2020-05-31 | 10 | -25/+41 | |
| | | | ||||||
| * | | Specify actions | Aleksey Kladov | 2020-05-31 | 4 | -3/+20 | |
| | | | ||||||
| * | | Generate features docs from source | Aleksey Kladov | 2020-05-31 | 7 | -2/+53 | |
| |/ | ||||||
* / | Add semantic highlight to QUESTION token | Roland Ruckerbauer | 2020-05-29 | 2 | -0/+3 | |
|/ | | | | Made it an operator with controlFlow modifier. | |||||
* | Fixed missing newline on each field on "Missing structure fields". | Cadu | 2020-05-27 | 1 | -1/+1 | |
| |