aboutsummaryrefslogtreecommitdiff
path: root/crates
Commit message (Collapse)AuthorAgeFilesLines
...
* | | Merge #2594bors[bot]2019-12-194-5/+85
|\ \ \ | |/ / |/| | | | | | | | | | | | | | | | | 2594: Omit default parameter types r=matklad a=SomeoneToIgnore Part of https://github.com/rust-analyzer/rust-analyzer/issues/1946 Co-authored-by: Kirill Bulatov <[email protected]>
| * | Omit default types for hover pop-upsKirill Bulatov2019-12-191-3/+3
| | |
| * | Remove TruncateOptions structKirill Bulatov2019-12-194-32/+24
| | |
| * | Do not add any new configuration parametersKirill Bulatov2019-12-196-49/+12
| | |
| * | Ensure hover shows full type declarationKirill Bulatov2019-12-192-2/+19
| | |
| * | Omit default parameter typesKirill Bulatov2019-12-199-29/+137
| | |
* | | Refactor macro testsAleksey Kladov2019-12-193-397/+283
| | |
* | | Fix parsing of interpolated expressionsAleksey Kladov2019-12-192-0/+19
|/ /
| |
| \
*-. \ Merge #2589 #2591bors[bot]2019-12-187-36/+40
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2589: Touch up docs r=matklad a=matklad 2591: Remove dead code r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]>
| | * | Remove dead codeAleksey Kladov2019-12-181-5/+0
| |/ /
| * | Touch up docsAleksey Kladov2019-12-181-1/+2
| | |
| * | Forbid <T>::foo syntax in mod pathsAleksey Kladov2019-12-187-20/+27
| | |
| * | Move PathKindUpAleksey Kladov2019-12-181-14/+14
| | |
| * | Touch up docsAleksey Kladov2019-12-181-3/+4
| | |
* | | Merge #2311bors[bot]2019-12-181-10/+33
|\ \ \ | |/ / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2311: See through Macros for SignatureHelp r=matklad a=kjeremy Note: we meed to skip the trivia filter to make sure that `covers!(call_info_bad_offset)` succeeds otherwise we exit call_info too early. Also the test doesn't pass: `FnCallNode::with_node` always detects a MacroCall which is obviously wrong. Fixes #2310 Co-authored-by: kjeremy <[email protected]> Co-authored-by: Jeremy Kolb <[email protected]>
| * | cargo fmtJeremy Kolb2019-12-181-1/+3
| | |
| * | Pass testJeremy Kolb2019-12-181-1/+1
| | |
| * | WIP: See through Macros for SignatureHelpkjeremy2019-12-181-9/+30
| |/ | | | | | | | | | | | | | | | | Note: we meed to skip the trivia filter to make sure that `covers!(call_info_bad_offset)` succeeds otherwise we exit call_info too early. Also the test doesn't pass: `FnCallNode::with_node` always detects a MacroCall.
* | Don't bother with focus range for navigation to localsAleksey Kladov2019-12-182-7/+49
| |
* | Refactor goto tests to always specify textsAleksey Kladov2019-12-182-52/+76
| |
* | Add blank lines for readabilityAleksey Kladov2019-12-181-0/+4
|/
* RefactoringEdwin Cheng2019-12-184-53/+55
|
* Rename range to by_kindEdwin Cheng2019-12-183-4/+4
|
* Add test for token mapEdwin Cheng2019-12-181-0/+43
|
* Fix shift id for delim and other tokensEdwin Cheng2019-12-181-3/+15
|
* Add TokenTextRangeEdwin Cheng2019-12-182-10/+35
|
* Add token id to delimsEdwin Cheng2019-12-186-65/+135
|
* Add token ids for all tt::LeafEdwin Cheng2019-12-186-33/+72
|
* Merge #2582bors[bot]2019-12-171-11/+0
|\ | | | | | | | | | | | | | | 2582: Drop dead code r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]>
| * Drop dead codeAleksey Kladov2019-12-171-11/+0
| |
* | Merge #2581bors[bot]2019-12-176-17/+34
|\| | | | | | | | | | | | | | | 2581: Refactor PathKind r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]>
| * Refactor PathKindAleksey Kladov2019-12-176-17/+34
| |
* | Merge #2580bors[bot]2019-12-173-3/+3
|\ \ | |/ |/| | | | | | | | | | | 2580: Fix highlighting token names r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]>
| * Fix highlighting token namesAleksey Kladov2019-12-173-3/+3
| |
* | Merge #2562bors[bot]2019-12-175-48/+86
|\ \ | |/ |/| | | | | | | | | | | | | | | | | | | | | | | | | 2562: Fix NavigationTarget ranges r=matklad a=edwin0cheng Fix the issue described in https://github.com/rust-analyzer/rust-analyzer/pull/2544#issuecomment-565572553 This PR change the order for finding `full_range` of `focus_range` in following orders: 1. map both ranges to macro_call 2. map focus range to a token inside macro call, and full range to the whole of macro call 3. map both ranges to the whole of macro call And fix the corresponding tests and make these tests easily to follow. Co-authored-by: Edwin Cheng <[email protected]>
| * Use simpler logic on original_rangeEdwin Cheng2019-12-142-56/+46
| |
| * Re-export Origin to replace ExpansionOriginEdwin Cheng2019-12-144-17/+11
| |
| * Fix original_source find orderEdwin Cheng2019-12-145-55/+109
| |
* | Improve recovery for incomplete lambdasAleksey Kladov2019-12-173-1/+94
| |
* | Add test markFlorian Diebold2019-12-153-2/+9
| |
* | Handle impl Trait more correctlyFlorian Diebold2019-12-153-1/+56
| | | | | | | | | | | | | | When calling a function, argument-position impl Trait is transparent; same for return-position impl Trait when inside the function. So in these cases, we need to represent that type not by `Ty::Opaque`, but by a type variable that can be unified with whatever flows into there.
* | Add test for unifying impl TraitFlorian Diebold2019-12-151-1/+27
| |
* | remove unnecessary turbofish.Omer Ben-Amram2019-12-151-2/+1
| |
* | cfg gated tests that only work on windows.Omer Ben-Amram2019-12-151-10/+16
| |
* | improved path checking to consider only paths that may contain a windows drive.Omer Ben-Amram2019-12-151-20/+44
| |
* | move import inside cfg blockOmer Ben-Amram2019-12-151-1/+2
| |
* | Lowercase drive letters on windows before sending to extension.Omer Ben-Amram2019-12-151-0/+34
| |
* | use a module instead of prefixed consts.Omer Ben-Amram2019-12-151-66/+64
| |
* | introduce named constants for highlighting tag names.Omer Ben-Amram2019-12-151-37/+67
| |
* | Merge #2559bors[bot]2019-12-153-17/+27
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2559: Add some granularity to syntax highlighting. r=matklad a=omerbenamram Hi, I wanted to start using `rust-analyzer` a bit more frequently - one of the main blockers for me so far was the highlighting. I just discovered it's possible to override the default colors with `ralsp.<something>` setting without waiting for #2061! However, the current implementation was lumping a bunch of different tokens into `type` and `literal`. The golden standard IMO is what Clion is currently doing (and is my current daily driver for rust). Clion allows users to control the coloring for specific literal kinds, and the default is to distinguish between them (numerics get a different color from strings, and special colors for bytestrings). I've also splitted the builtin types, which are also allowed to be highlighted speratly. My goal is to match the default experience I'm getting with clion. The only blockers now I think is that `rust-analyzer` doesn't corrently infer types in some situations, so the highlighting information is incorrect in those cases. This is what it looks like so far (with colors overriden to match clion's theme): ![image](https://user-images.githubusercontent.com/2467993/70848219-ccd97900-1e76-11ea-89e1-2e467cfcc9fb.png) If there are any other changes you feel is necessary let me know. I did leave the default colors to match the current behavior, since I'm not familiar with the colors for this theme, I added some random (different) colors in the test to check that it indeed was working. Co-authored-by: Omer Ben-Amram <[email protected]>