| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2022-07-18 | Auto merge of #12549 - bitgaoshu:goto_where_trait_m_impl, r=Veykril | bors | -1/+1 | |
| feat: Go to implementation of trait methods try goto where the trait method implies, #4558 | ||||
| 2022-07-08 | Update remaining GitHub URLs | Jonas Schievink | -2/+2 | |
| 2022-07-05 | Complete associated type only in trait generic arg | Hongxu Xu | -17/+20 | |
| Fix tidy check does not work for marks in multiline | ||||
| 2022-06-25 | fix test in resolve_proc_macro: Foo is Owner | bitgaoshu | -1/+1 | |
| 2022-06-10 | Auto merge of #12502 - Veykril:deps, r=Veykril | bors | -0/+1 | |
| internal: Bump Dependencies | ||||
| 2022-06-10 | internal: Bump Dependencies | Lukas Wirth | -0/+1 | |
| 2022-06-08 | Fix a couple of weak warnings found by rust-analyzer itself | bjorn3 | -1/+1 | |
| 2022-05-21 | add failing test | Bernardo Uriarte | -1/+39 | |
| 2022-05-18 | Improve docs generation assist | Jonas Schievink | -2/+2 | |
| 2022-05-01 | Update config usage in slow tests | Lukas Wirth | -5/+11 | |
| 2022-05-01 | delete another swap file | Peh | -0/+0 | |
| 2022-05-01 | update crates names in slow-tests/tidy.rs | Peh | -16/+16 | |
| 2022-04-13 | Update CI for Rust bors | Deadbeef | -1/+1 | |
| 2022-04-04 | fix: Show the path to be created in the unresolved-module fix label | Lukas Wirth | -4/+4 | |
| 2022-03-17 | Bump deps | Laurențiu Nicola | -0/+1 | |
| 2022-03-14 | :arrow_up: xshell | Aleksey Kladov | -15/+24 | |
| 2022-03-12 | more clippy fixes: | Matthias Krüger | -1/+1 | |
| clippy::match_like_matches_macro clippy::to_string_in_format_args clippy::single_char_add_str clippy::filter_map_identity clippy::clone_on_copy clippy::useless_format clippy::unused_unit | ||||
| 2022-03-12 | fix clippy::single_char_pattern | Matthias Krüger | -4/+4 | |
| 2022-03-11 | fix: Show what file paths were expected for unresolved modules | Lukas Wirth | -21/+49 | |
| 2022-03-06 | Update tidy ignore list | Lukas Wirth | -3/+3 | |
| 2022-01-26 | Fix merge commit check for git 2.35 | Jonas Schievink | -4/+3 | |
| 2022-01-06 | feat: poke user when supplying faulty configurations | Lukas Wirth | -1/+1 | |
| 2022-01-01 | test: force client-side watching | Aleksey Kladov | -0/+8 | |
| The direct reason for this is to fix CI on windows, which seems to fail for some reason after we fixed the watcher-selection logic which (I think) changed the tests behavior to use notify rather than client. But this patch seems to make sense in general -- file watching is notoriously finicky, so controlling it explicitly leads to less fragile tests. | ||||
| 2022-01-01 | better error message | Aleksey Kladov | -1/+3 | |
| 2021-12-04 | Bump most deps | Laurențiu Nicola | -1/+0 | |
| 2021-11-17 | Simplify | Lukas Wirth | -1/+1 | |
| 2021-11-17 | Check for derive attributes by item path, not `derive` identifier | Lukas Wirth | -0/+3 | |
| 2021-11-04 | Use array into_iter in more places | Laurențiu Nicola | -2/+2 | |
| 2021-10-27 | Remove filtered completion list usage in completion tests | Lukas Wirth | -0/+1 | |
| 2021-10-24 | Revert edition change in test | Laurențiu Nicola | -1/+1 | |
| 2021-10-22 | Use array IntoIter | Laurențiu Nicola | -2/+2 | |
| 2021-10-21 | Migrate to edition 2021 | Lukas Wirth | -3/+3 | |
| 2021-10-17 | Merge #10562 | bors[bot] | -0/+2 | |
| 10562: fix: Fix clippy attribute completions always prefixing inserting `clippy::` r=Veykril a=Veykril Fixes https://github.com/rust-analyzer/rust-analyzer/issues/7144 Co-authored-by: Lukas Wirth <lukastw97@gmail.com> | ||||
| 2021-10-17 | Fix clippy attribute completions always prefixing with `clippy::` | Lukas Wirth | -0/+2 | |
| 2021-10-16 | more clippy fixes | Milo | -1/+1 | |
| 2021-10-14 | Merge #10503 | bors[bot] | -0/+87 | |
| 10503: Only include targets of packages that are workspace members r=Veykril a=bcully CargoWorkspace's package list includes packages that are path dependencies, even if those packages aren't actually members of the cargo workspace. As a result, rust-analyzer's runnable finder, which returns the target from the first workspace that has a matching package, may select the wrong working directory, causing runnables to fail, e.g., ``` error: package `root` cannot be tested because it requires dev-dependencies and is not a member of the workspace ``` To fix this, we filter out packages that aren't members of the workspace when searching for targets. Fixes #7764 Co-authored-by: Brendan Cully <brendan@cully.org> | ||||
| 2021-10-12 | Update tidy ignore path | Lukas Wirth | -1/+1 | |
| 2021-10-11 | Only include targets of packages that are workspace members | Brendan Cully | -0/+87 | |
| CargoWorkspace's package list includes packages that are path dependencies, even if those packages aren't actually members of the cargo workspace. As a result, rust-analyzer's runnable finder, which returns the target from the first workspace that has a matching package, may select the wrong working directory, causing runnables to fail, e.g., ``` error: package `root` cannot be tested because it requires dev-dependencies and is not a member of the workspace ``` To fix this, we filter out packages that aren't members of the workspace when searching for targets. Fixes #7764 | ||||
| 2021-09-24 | Merge #10105 | bors[bot] | -0/+2 | |
| 10105: RfC: Use `todo!()` instead of `()` for missing fields r=jonas-schievink a=jo-so Most commonly a field of a struct can be initialized with its default value than an empty tuple. Co-authored-by: Jörg Sommer <joerg@jo-so.de> | ||||
| 2021-09-23 | Split the hover module up | Lukas Wirth | -1/+1 | |
| 2021-09-21 | Rename some assists | Lukas Wirth | -1/+1 | |
| 2021-09-14 | Exclude test file from rust tidy check | Lukas Wirth | -0/+1 | |
| 2021-09-13 | Add proc-macro fixture directive | Lukas Wirth | -1/+2 | |
| 2021-09-09 | Use `todo!()` instead of `()` for missing fields | Jörg Sommer | -0/+2 | |
| The generated code with `()` doesn't compile in most of the cases. To signal the developer there's something to do, fill in `todo!()`. Because the file *missing_fields.rs* contains the string `todo!()` it needs an exception for the test *check_todo*. | ||||
| 2021-08-30 | switch `log` crate to `tracing` | Dezhi Wu | -1/+4 | |
| 2021-08-10 | implement feedback from review | Yoshua Wuyts | -1/+1 | |
| 2021-08-10 | Add trait codegen to `add_missing_impl_members` assist | Yoshua Wuyts | -0/+1 | |
| 2021-08-08 | exclude files from tidy check | Yoshua Wuyts | -0/+2 | |
| 2021-07-19 | fix tests | Aleksey Kladov | -1/+12 | |
| 2021-07-14 | Show test mod runnable in outline modules | Lukas Wirth | -0/+43 | |
