about summary refs log tree commit diff
path: root/crates
AgeCommit message (Collapse)AuthorLines
2022-03-16Mark chaining hints as types, since that's what they areLaurențiu Nicola-2/+1
2022-03-15Merge #11718bors[bot]-3/+37
11718: Fix const generic panic r=lnicola a=HKalbasi fix https://github.com/rust-analyzer/rust-analyzer/pull/11688#issuecomment-1066824954 Co-authored-by: hkalbasi <hamidrezakalbasi@protonmail.com>
2022-03-15fix const generic panichkalbasi-3/+37
2022-03-15Merge #11714bors[bot]-17/+63
11714: fix: Fix completions not always working in for-loop patterns r=Veykril a=Veykril Fixes https://github.com/rust-analyzer/rust-analyzer/issues/11205 bors r+ Co-authored-by: Lukas Wirth <lukastw97@gmail.com>
2022-03-15fix: Fix completions not always working in for-loop patternsLukas Wirth-17/+63
2022-03-14Merge #11707bors[bot]-35/+38
11707: minor: Simplify r=Veykril a=Veykril bors r+ Co-authored-by: Lukas Wirth <lukastw97@gmail.com>
2022-03-14SimplifyLukas Wirth-35/+38
2022-03-14Merge #11700bors[bot]-32/+49
11700: :arrow_up: xshell r=matklad a=matklad Co-authored-by: Aleksey Kladov <aleksey.kladov@gmail.com>
2022-03-14:arrow_up: xshellAleksey Kladov-32/+49
2022-03-14Add const genericshkalbasi-519/+1264
2022-03-13test: Make imported_external test that the full path is replacedSteven Joruk-6/+4
2022-03-12broke a test trying to make the diff look better...Morgan Thomas-1/+1
2022-03-12fix: "Extract to function" assist preserves `break` and `continue` labelsMorgan Thomas-26/+146
Adds a label / lifetime parameter to `ide_assists::handlers::extract_function::FlowKind::{Break, Continue}`, adds support for emitting labels to `syntax::ast::make::{expr_break, expr_continue}`, and implements the required machinery to let `extract_function` make use of them. This does modify the external API of the `syntax` crate, but the changes there are simple, not used outside `ide_assists`, and, well, we should probably support emitting `break` and `continue` labels through `syntax` anyways, they're part of the language spec. Closes #11413.
2022-03-12chore: Remove unused importSteven Joruk-1/+1
2022-03-12refactor: Veykril's code review suggestionsSteven Joruk-91/+126
2022-03-12fix clippy::needless_late_initMatthias Krüger-47/+31
2022-03-12more clippy fixes:Matthias Krüger-24/+15
clippy::search_is_some clippy::redundant_static_lifetimes clippy::match_single_binding clippy::match_ref_pats clippy::map_entry clippy::manual_map clippy::iter_overeager_cloned clippy::into_iter_on_ref clippy::extra_unused_lifetimes
2022-03-12more clippy fixes:Matthias Krüger-25/+18
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-12fix clippy::needless_returnMatthias Krüger-17/+14
2022-03-12fix clippy::redundant_cloneMatthias Krüger-10/+6
2022-03-12fix clippy::map_flattenMatthias Krüger-8/+6
2022-03-12fix clippy::useless_conversionMatthias Krüger-29/+25
2022-03-12fix clippy::redundant_closureMatthias Krüger-25/+17
2022-03-12fix clippy::single_char_patternMatthias Krüger-22/+22
2022-03-12fix clippy::needless_borrowMatthias Krüger-77/+74
2022-03-12Merge #11691bors[bot]-28/+179
11691: feat: Suggest union literals, suggest union fields within an empty union literal r=Veykril a=m0rg-dev Adds a `Union {…}` completion in contexts where a union is expected, expanding to a choice of available fields (if snippets are supported): ![image](https://user-images.githubusercontent.com/38578268/158023335-84c03e39-daf0-4a52-b969-f40b01501cc8.png) ![image](https://user-images.githubusercontent.com/38578268/158023354-db49d0bb-034c-49d3-bc02-07414179cb61.png) Also, adds support for listing possible fields in an empty union literal. ![image](https://user-images.githubusercontent.com/38578268/158023398-4695ae34-ce64-4f40-8494-68731a3030c6.png) ![image](https://user-images.githubusercontent.com/38578268/158023406-be96dd95-125a-47ac-9628-0bce634ca2eb.png) Closes #11568. Co-authored-by: Morgan Thomas <corp@m0rg.dev>
2022-03-12- clean up match in ide_completion::completions::record::complete_record_literalMorgan Thomas-55/+50
- use original instead of adjusted type in ide_completion::completions::record::complete_record - don't even bother checking if we can complete union literals to Default or to struct update syntax
2022-03-12internal: Remove ide_completion::render::build_ext moduleLukas Wirth-170/+166
2022-03-12Suggest union literals, suggest union fields within an empty union literalMorgan Thomas-10/+166
2022-03-12feat: Add an assist for inlining type aliasesSteven Joruk-0/+746
This intends to lead to a more useful assist to replace all users of an alias with its definition.
2022-03-12chore: fill_match_arms was renamed - update its usage in a commentSteven Joruk-1/+1
2022-03-12Merge #11687 #11689bors[bot]-28/+54
11687: Highlight escape sequences in byte strings r=Veykril a=yipinliu #11605 11689: minor: Pad type inlay hints if no colons are requested r=Veykril a=Veykril bors r+ Co-authored-by: yipinliu <ypliu18@gmail.com> Co-authored-by: Lukas Wirth <lukastw97@gmail.com>
2022-03-12minor: Pad type inlay hints if no colons are requestedLukas Wirth-1/+2
2022-03-12Optimize importsyipinliu-7/+3
2022-03-12Merge #11686bors[bot]-160/+186
11686: feat: Enum variant field completion, enum variant / struct consistency r=Veykril a=m0rg-dev This addresses several related inconsistencies: - tuple structs use tab stops instead of placeholders - tuple structs display in the completion menu as `Struct {…}` instead of `Struct(…)` - enum variants don't receive field completions at all - enum variants display differently from structs in the completion menu Also, structs now display their type in the completion detail rather than the raw snippet text to be inserted. As far as what's user-visible, that looks like this: | | Menu | Completion | Detail | |-|-|-|-| | Record struct (old) | `Struct {…}` | `Struct { x: ${1:()}, y: ${2:()} }$0` | `Struct { x: ${1:()}, y: ${2:()} }$0` | | Record struct (new) | `Struct {…}` | `Struct { x: ${1:()}, y: ${2:()} }$0` | `Struct { x: i32, y: i32 }` | | Tuple struct (old) | `Struct {…}` | `Struct($1, $2)$0` | `Struct($1, $2)` | | Tuple struct (new) | `Struct(…)` | `Struct(${1:()}, ${2:()})$0` | `Struct(i32, i32)` | | Unit variant (old) | `Variant` | `Variant` | `()` | | Unit variant (new) | `Variant` | `Variant$0` | `Variant` | | Record variant (old) | `Variant` | `Variant` | `{x: i32, y: i32}` | | Record variant (new) | `Variant {…}` | `Variant { x: ${1:()}, y: ${2:()} }$0` | `Variant { x: i32, y: i32 }` | | Tuple variant (old) | `Variant(…)` | `Variant($0)` | `(i32, i32)` | | Tuple variant (new) | `Variant(…)` | `Variant(${1:()}, ${2:()})$0` | `Variant(i32, i32)` | Additionally, tuple variants no longer set `triggers_call_info` because it conflicts with placeholder generation, and tuple variants that require a qualified path should now use the qualified path. Internally, this also lets us break the general "format an item with fields on it" code out into a shared module, so that means it'll be a lot easier to implement features like #11568. Co-authored-by: Morgan Thomas <corp@m0rg.dev>
2022-03-12Reduce intermediate string allocations in render::compound::render_record ↵Morgan Thomas-32/+24
and ::render_tuple
2022-03-12Extract the code for formatting struct and enum-variant literal labels out ↵Morgan Thomas-12/+17
into a common function
2022-03-12Fixed code style issuesyipinliu-71/+21
2022-03-12Fixed tidy testyipinliu-1/+1
2022-03-12Highlight escape sequences in byte stringsyipinliu-18/+97
2022-03-11make the doc comment on render::compound::visible_fields a little betterMorgan Thomas-2/+2
2022-03-11visibility tweak for CIMorgan Thomas-2/+2
2022-03-11Complete enum variants identically to structures.Morgan Thomas-90/+69
In particular: - unit variants now display in the menu as "Variant", complete to "Variant", and display a detail of "Variant" (was "()") - tuple variants now display in the menu as "Variant(…)", complete to "Variant(${1:()})$0" (was "Variant($0)"), and display a detail of "Variant(type)" (was "(type)") - record variants now display in the menu as "Variant {…}", complete to "Variant { x: ${1:()} }$0" (was "Variant"), and display a detail of "Variant { x: type }" (was "{x: type}") This behavior is identical to that of struct completions. In addition, tuple variants no longer set triggers_call_info, as to my understanding it's unnecessary now that we're emitting placeholders. Tests have been updated to match, and the render::enum_variant::tests::inserts_parens_for_tuple_enums test has been removed entirely as it's covered by other tests (render::enum_detail_includes_{record, tuple}_fields, render::enum_detail_just_name_for_unit, render::pattern::enum_qualified).
2022-03-11- Break out functionality related to rendering struct completions into ↵Morgan Thomas-70/+120
`crates/ide_completion/src/render/compound.rs` - Add support for placeholder completions in tuple structs - Denote tuple struct completions with `(…)` instead of ` {…}` - Show struct completions as their type (`Struct { field: Type }`) in the completion menu instead of raw snippet text (`Struct { field: ${1:()} }$0`)
2022-03-12Merge #11685bors[bot]-94/+52
11685: internal: Simplify CompletionContext r=Veykril a=Veykril bors r+ Co-authored-by: Lukas Wirth <lukastw97@gmail.com>
2022-03-12Remove no_completions_required from CompletionContextLukas Wirth-94/+52
2022-03-12Merge #11684bors[bot]-13/+51
11684: fix: Allow configuration of colons in inlay-hints r=Veykril a=Veykril bors r+ Co-authored-by: Lukas Wirth <lukastw97@gmail.com>
2022-03-12minor: add missing definitions of lsp_ext::InlayHintLabelLukas Wirth-3/+21
2022-03-11refactor: Rename and move const_arg_pathSteven Joruk-33/+41
It wasn't testing the `const_arg` code path, it was actually hitting const_param's default value code path, so move it to the right place and rename it.
2022-03-11refactor: Rename const_arg_content to const_arg_exprSteven Joruk-3/+3