| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2022-06-23 | clarify comment and add autolink test case | Raymond Luo | -1/+1 | |
| 2022-06-22 | condense matches on autolink | Raymond Luo | -2/+2 | |
| 2022-06-20 | handle autolink as edge case | Raymond Luo | -2/+10 | |
| 2022-06-20 | determine doc link type from start instead of text or code | Raymond Luo | -8/+5 | |
| 2022-06-10 | internal: Bump Dependencies | Lukas Wirth | -2/+2 | |
| 2022-05-22 | fix: special case base url of `BuiltinType` to core | rainy-me | -9/+13 | |
| 2022-05-20 | minor: Simplify | Lukas Wirth | -12/+3 | |
| 2022-05-05 | fix: add docs and remove unnecessary check | rainy-me | -2/+2 | |
| 2022-05-05 | fix: doc url link type | rainy-me | -15/+30 | |
| 2022-04-10 | Simplify | Lukas Wirth | -7/+15 | |
| 2022-03-09 | Add data queries for macros | Lukas Wirth | -1/+1 | |
| 2022-03-08 | Move ide crates to new hir::Macro | Lukas Wirth | -6/+2 | |
| 2022-02-06 | Bump pulldown-cmark-to-cmark, adjust usages and fix test | Moritz Vetter | -3/+3 | |
| 2022-01-21 | Bump pulldown-cmark and pulldown-cmark-to-cmark | Laurențiu Nicola | -7/+2 | |
| 2021-12-14 | Move out doc-links tests into a separate module | Lukas Wirth | -396/+3 | |
| 2021-12-04 | Bump pulldown-cmark-to-cmark | Laurențiu Nicola | -2/+2 | |
| 2021-12-03 | Rename things: Tool -> ToolModule | Lukas Wirth | -2/+2 | |
| 2021-12-03 | feat: Resolve builtin-attr and tools in ide layer | Lukas Wirth | -4/+8 | |
| 2021-11-22 | Unnest ide::display::navigation_target module | Lukas Wirth | -1/+1 | |
| 2021-11-11 | internal: Flatten `Definition::ModuleDef` variant | Lukas Wirth | -141/+113 | |
| 2021-11-05 | Merge #10685 | bors[bot] | -6/+6 | |
| 10685: fix: Enable markdown tables r=Veykril a=Veykril Should fix https://github.com/rust-analyzer/rust-analyzer/issues/10655 bors r+ Co-authored-by: Lukas Wirth <lukastw97@gmail.com> | ||||
| 2021-11-04 | Enable markdown tables | Lukas Wirth | -6/+6 | |
| 2021-11-03 | Expose version string of crates fom HIR | Lukas Wirth | -1/+6 | |
| 2021-10-28 | Refactor ide handling for paths in derive inputs | Lukas Wirth | -3/+3 | |
| 2021-10-21 | Migrate to edition 2021 | Lukas Wirth | -2/+0 | |
| 2021-10-20 | Fix standard library doclinks not going to the correct page | Lukas Wirth | -35/+74 | |
| 2021-10-12 | Saw a FIXME comment and decided to fix it. | Mirko Rainer | -2/+2 | |
| This renames `descend_into_macros` to `descend_into_macros_single` and `descend_into_macros_many` into `descend_into_macros`. However, this does not touch a function in `SemanticsImpl` of same name. | ||||
| 2021-10-10 | Remove neesless clone | k-nasa | -1/+1 | |
| 2021-09-23 | Support goto_def for intra-doc-links in macro invocations | Lukas Wirth | -1/+66 | |
| 2021-08-02 | resolve_doc_path is able to resolve to macros | Lukas Wirth | -50/+73 | |
| 2021-07-26 | Simplify | Lukas Wirth | -0/+1 | |
| 2021-07-20 | cov-mark | Lukas Wirth | -1/+1 | |
| 2021-07-20 | More tests | Lukas Wirth | -39/+81 | |
| 2021-07-20 | Move doc_links tests from hover to doc_links | Lukas Wirth | -0/+72 | |
| 2021-07-20 | Minor cleanups | Lukas Wirth | -54/+50 | |
| 2021-07-20 | Some more fragment fixes | Lukas Wirth | -143/+104 | |
| 2021-07-20 | Correctly generate link fragments for associated items | Lukas Wirth | -110/+150 | |
| 2021-07-19 | Add doc-link resolution test infra | Lukas Wirth | -69/+102 | |
| 2021-07-11 | Inline name classification reference calls | Lukas Wirth | -2/+10 | |
| 2021-07-11 | Explicitly check for reference locals or fields in Name classification | Lukas Wirth | -2/+2 | |
| 2021-07-11 | internal: remove one more needless extern crate | Aleksey Kladov | -1/+1 | |
| 2021-07-11 | internal: remove unused param | Aleksey Kladov | -1/+1 | |
| 2021-06-22 | Factor out `pick_best_token` ide pattern into `ide_db` | Lukas Wirth | -16/+8 | |
| 2021-06-15 | internal: document that we don't #[ignore] tests | Aleksey Kladov | -6/+12 | |
| 2021-06-13 | clippy::useless_return | Maan2003 | -1/+1 | |
| 2021-06-13 | clippy::redudant_borrow | Maan2003 | -10/+10 | |
| 2021-05-24 | Bump misc deps | Laurențiu Nicola | -3/+3 | |
| 2021-05-13 | Enable OPTION::ENABLE_TASKLISTS in pulldown_cmark | Lukas Wirth | -4/+4 | |
| 2021-04-19 | Support crates/module roots in external_docs | Lukas Wirth | -17/+41 | |
| 2021-04-05 | Merge #8245 | bors[bot] | -73/+59 | |
| 8245: Properly resolve intra doc links in hover and goto_definition r=matklad a=Veykril Unfortunately involves a bit of weird workarounds due to pulldown_cmark's incorrect lifetimes on `BrokenLinkCallback`... I should probably open an issue there asking for the fixes to be pushed to a release since they already exist in the repo for quite some time it seems. Fixes #8258, Fixes #8238 Co-authored-by: Lukas Wirth <lukastw97@gmail.com> | ||||
