Skip to content

Commit dd9baad

Browse files
authoredMar 24, 2025··
Add 'updated:' to the top-level completition list. (#8665)
1 parent 394acb1 commit dd9baad

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed
 

‎app/lib/frontend/templates/views/shared/search_banner.dart

+8
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,7 @@ String completionDataJson({
112112
'dependency:',
113113
'dependency*:',
114114
'publisher:',
115+
'updated:',
115116
],
116117
),
117118
// TODO: Consider completion support for dependency:, dependency*: and publisher:
@@ -180,6 +181,13 @@ String completionDataJson({
180181
...topics,
181182
],
182183
),
184+
CompletionRule(
185+
match: {'updated:'},
186+
options: [
187+
'3m',
188+
'1y',
189+
],
190+
),
183191
],
184192
).toJson(),
185193
);

0 commit comments

Comments
 (0)
Please sign in to comment.