@@ -293,6 +293,9 @@ find_completions(
293
293
% % Check for "[...] #"
294
294
[{'#' , _ } | _ ] ->
295
295
definitions (Document , record );
296
+ % % Check for "#{"
297
+ [{'{' , _ }, {'#' , _ } | _ ] ->
298
+ [map_comprehension_completion_item (Document , Line , Column )];
296
299
% % Check for "[...] #anything"
297
300
[_ , {'#' , _ } | _ ] ->
298
301
definitions (Document , record );
@@ -333,6 +336,9 @@ find_completions(
333
336
Attribute =:= behaviour ; Attribute =:= behavior
334
337
->
335
338
[item_kind_module (Module ) || Module <- behaviour_modules (" " )];
339
+ % % Check for "["
340
+ [{'[' , _ } | _ ] ->
341
+ [list_comprehension_completion_item (Document , Line , Column )];
336
342
% % Check for "[...] fun atom"
337
343
[{atom , _ , _ }, {'fun' , _ } | _ ] ->
338
344
bifs (function , ItemFormat = arity_only ) ++
@@ -368,6 +374,65 @@ find_completions(
368
374
find_completions (_Prefix , _TriggerKind , _Opts ) ->
369
375
[].
370
376
377
+ -spec list_comprehension_completion_item (els_dt_document :item (), line (), column ()) ->
378
+ completion_item ().
379
+ list_comprehension_completion_item (#{text := Text }, Line , Column ) ->
380
+ Suffix =
381
+ try els_text :get_char (Text , Line , Column + 1 ) of
382
+ {ok , $] } ->
383
+ % % Don't include ']' if next character is a ']'
384
+ % % I.e if cursor is at []
385
+ % % ^
386
+ <<" " >>;
387
+ _ ->
388
+ <<" ]" >>
389
+ catch
390
+ _ :_ :_ ->
391
+ <<" ]" >>
392
+ end ,
393
+ InsertText =
394
+ case snippet_support () of
395
+ true ->
396
+ <<" ${3:Expr} || ${2:Elem} <- ${1:List}" , Suffix /binary >>;
397
+ false ->
398
+ <<" Expr || Elem <- List" , Suffix /binary >>
399
+ end ,
400
+ #{
401
+ label => <<" [Expr || Elem <- List]" >>,
402
+ kind => ? COMPLETION_ITEM_KIND_KEYWORD ,
403
+ insertTextFormat => ? INSERT_TEXT_FORMAT_SNIPPET ,
404
+ insertText => InsertText
405
+ }.
406
+
407
+ -spec map_comprehension_completion_item (els_dt_document :item (), line (), column ()) ->
408
+ completion_item ().
409
+ map_comprehension_completion_item (#{text := Text }, Line , Column ) ->
410
+ Suffix =
411
+ try els_text :get_char (Text , Line , Column + 1 ) of
412
+ {ok , $} } ->
413
+ % % Don't include '}' if next character is a '}'
414
+ % % I.e if cursor is at #{}
415
+ % % ^
416
+ <<" " >>;
417
+ _ ->
418
+ <<" }" >>
419
+ catch
420
+ _ :_ :_ ->
421
+ <<" }" >>
422
+ end ,
423
+ InsertText =
424
+ case snippet_support () of
425
+ true ->
426
+ <<" ${4:K} => ${5:V} || ${2:K} => ${3:V} <- ${1:Map}" , Suffix /binary >>;
427
+ false ->
428
+ <<" K => V || K := V <- Map" , Suffix /binary >>
429
+ end ,
430
+ #{
431
+ label => <<" #{K => V || K := V <- Map}" >>,
432
+ kind => ? COMPLETION_ITEM_KIND_KEYWORD ,
433
+ insertTextFormat => ? INSERT_TEXT_FORMAT_SNIPPET ,
434
+ insertText => InsertText
435
+ }.
371
436
372
437
-spec complete_atom (atom (), [any ()], map ()) -> [completion_item ()].
373
438
complete_atom (Name , Tokens , Opts ) ->
0 commit comments