Lukas Wirth
|
5c69df93df
|
Split remaining completion calls on the context kinds
|
2022-06-20 13:17:30 +02:00 |
|
Lukas Wirth
|
c1446a2743
|
Move CompletionContext::impl_def into corresponding entities
|
2022-06-18 10:45:53 +02:00 |
|
Lukas Wirth
|
83e8f3ac30
|
Move CompletionContext::incomplete_let into PathKind::Expr
|
2022-06-18 10:19:04 +02:00 |
|
Lukas Wirth
|
7369e5120d
|
Move CompletionContext::function_def into PathKind::Expr
|
2022-06-18 09:54:03 +02:00 |
|
Lukas Wirth
|
309ecdd71c
|
internal: NameRefKind classification is not optional
|
2022-06-18 08:58:47 +02:00 |
|
Lukas Wirth
|
0665428b4e
|
minor: Simplify
|
2022-06-18 01:15:08 +02:00 |
|
Lukas Wirth
|
173bb10a76
|
internal: Split flyimport into its 3 applicable contexts
|
2022-06-18 00:47:28 +02:00 |
|
Lukas Wirth
|
00fdb4a3d8
|
Only run completion functions if their corresponding context is active
|
2022-06-17 23:36:39 +02:00 |
|
Lukas Wirth
|
d97a8ee865
|
Remove superfluous early returns
|
2022-06-17 17:49:25 +02:00 |
|
Lukas Wirth
|
85b68b1f7d
|
Inline PathQualifierCtx
|
2022-06-17 17:27:12 +02:00 |
|
Lukas Wirth
|
d6f161ffa9
|
internal: Collapse lift is_infer_qualifier into Qualified variant
|
2022-06-17 17:15:29 +02:00 |
|
Lukas Wirth
|
2f2ea77d88
|
Move existing_derives into PathKind::Derive
|
2022-06-17 16:56:21 +02:00 |
|
Lukas Wirth
|
531060f103
|
internal: Collapse completion ctx path qualifier and is_absolute_path into enum
|
2022-06-17 16:36:22 +02:00 |
|
Lukas Wirth
|
85363d18e8
|
Simplify
|
2022-06-17 16:22:51 +02:00 |
|
Lukas Wirth
|
f201a40492
|
Remove ImmediateLocation in favor of PathKind::Type
|
2022-06-17 15:09:48 +02:00 |
|
Lukas Wirth
|
6b246292ca
|
Move more ImmediateLocation::TypeAnnotation into PathKind::Type
|
2022-06-17 11:31:36 +02:00 |
|
Lukas Wirth
|
6e07b17f69
|
Introduce NameRefKind for completions
|
2022-06-17 10:45:19 +02:00 |
|
Hongxu Xu
|
534d71a852
|
disable private editable in TEST_CONFIG by default
adjust test_visibility_filter test case
|
2022-06-16 08:52:57 +08:00 |
|
bors
|
9ef01d0895
|
Auto merge of #12490 - yue4u:fix/show-enum-in-fresh-use-tree, r=Veykril
fix: complete non-std enum at the start of `use` completions
close: #12421
|
2022-06-10 20:33:17 +00:00 |
|
Lukas Wirth
|
76ae5434fa
|
internal: Bump Dependencies
|
2022-06-10 17:30:02 +02:00 |
|
yue4u
|
2942863709
|
feat: append :: after
|
2022-06-09 16:45:46 +09:00 |
|
yue4u
|
55bc693356
|
fix: show non-std enum in a fresh use tree completion
|
2022-06-08 20:55:16 +09:00 |
|
Lukas Wirth
|
0be31d945e
|
fix: Fix trait impl completions using wrong insert position
|
2022-06-05 20:29:36 +02:00 |
|
Lukas Wirth
|
a2a74bf278
|
Remove some of the unnecessary helpfer functions from CompletionContext
|
2022-06-03 20:49:25 +02:00 |
|
Lukas Wirth
|
a0c1816e3a
|
Simplify
|
2022-06-03 19:55:30 +02:00 |
|
Lukas Wirth
|
98c0578f15
|
Move trait_impl completion analysis into CompletionContext
|
2022-06-03 19:49:02 +02:00 |
|
Lukas Wirth
|
2a60b8452e
|
Deduplicate
|
2022-06-03 16:33:37 +02:00 |
|
Lukas Wirth
|
522f66545f
|
Remove prev-sibling completion machinery
|
2022-06-03 16:25:37 +02:00 |
|
Lukas Wirth
|
6550a241fb
|
More precise where keyword completions
|
2022-06-03 16:11:26 +02:00 |
|
Lukas Wirth
|
c522669f00
|
Remove dead code
|
2022-06-03 15:46:17 +02:00 |
|
Lukas Wirth
|
c5dcc77b40
|
Fix visibility mods not being completed for field defs
|
2022-06-03 15:42:28 +02:00 |
|
Lukas Wirth
|
519ac81b57
|
internal: Move most remaining keyword completions to item list completions
|
2022-06-03 15:15:21 +02:00 |
|
Lukas Wirth
|
0327df224b
|
More precise completion filtering
|
2022-05-30 16:01:17 +02:00 |
|
Lukas Wirth
|
86d1d9067e
|
fix: Insert whitespace into trait-impl completions when coming from macros
|
2022-05-24 22:56:33 +02:00 |
|
Lukas Wirth
|
6f006b7524
|
Simplify
|
2022-05-24 21:58:47 +02:00 |
|
Lukas Wirth
|
6a8b8a6039
|
internal: Refactor our record pat/expr handling in completion context
|
2022-05-24 13:24:36 +02:00 |
|
Lukas Wirth
|
697ade6f8d
|
internal: Simplify DotAccess representation in completions
|
2022-05-24 11:54:50 +02:00 |
|
Jonas Schievink
|
9bd11459ba
|
Revert "Auto merge of #12149 - jonas-schievink:literally-just-a-literal, r=jonas-schievink"
This reverts commit cc9ae2b89e01a30e441371b9fd3376c3d03a475f, reversing
changes made to 7dfd1cb572d8d4fd951237361e43ecddd9c9a852.
|
2022-05-13 15:08:14 +02:00 |
|
bors
|
254bfdd2c3
|
Auto merge of #12204 - Veykril:completions, r=Veykril
internal: Move keyword expressions to expr completions module
|
2022-05-10 13:08:27 +00:00 |
|
Lukas Wirth
|
b2abe1bca1
|
Move keyword expressions to expr completions module
|
2022-05-10 15:00:58 +02:00 |
|
bors
|
4a4e9c0ae0
|
Auto merge of #12203 - Veykril:completions, r=Veykril
internal: Simplify
|
2022-05-10 12:36:46 +00:00 |
|
Lukas Wirth
|
40bb8006cd
|
Don't parse files in module completion
|
2022-05-10 14:31:43 +02:00 |
|
Jonas Schievink
|
5a2398d775
|
Don't show assoc. type binding completions when invalid
|
2022-05-09 18:12:12 +02:00 |
|
Jonas Schievink
|
2156815f12
|
Make completion work too
|
2022-05-09 17:39:13 +02:00 |
|
Lukas Wirth
|
a0fc649269
|
fix unreachable pub
|
2022-05-07 15:50:01 +02:00 |
|
Lukas Wirth
|
44c3cc100b
|
Merge the different identifier contexts into one enum
|
2022-05-07 15:06:59 +02:00 |
|
Lukas Wirth
|
99fa37d6e3
|
Split namelike into the corresponding completion contexts
|
2022-05-07 14:16:03 +02:00 |
|
Lukas Wirth
|
6a045c7029
|
Introduce NameRefContext
|
2022-05-07 13:46:43 +02:00 |
|
Lukas Wirth
|
1dc83f5a90
|
minor: Move inferred type completions
|
2022-05-07 12:59:26 +02:00 |
|
Lukas Wirth
|
0ce620686c
|
fix: Fix snippets triggering where they shouldn't
|
2022-05-06 15:44:41 +02:00 |
|