Skip to content

Commit 45dbb62

Browse files
committed
Add support for completing map and list comprehensions
1 parent 0189da5 commit 45dbb62

File tree

1 file changed

+65
-0
lines changed

1 file changed

+65
-0
lines changed

apps/els_lsp/src/els_completion_provider.erl

+65
Original file line numberDiff line numberDiff line change
@@ -293,6 +293,9 @@ find_completions(
293293
%% Check for "[...] #"
294294
[{'#', _} | _] ->
295295
definitions(Document, record);
296+
%% Check for "#{"
297+
[{'{', _}, {'#', _} | _] ->
298+
[map_comprehension_completion_item(Document, Line, Column)];
296299
%% Check for "[...] #anything"
297300
[_, {'#', _} | _] ->
298301
definitions(Document, record);
@@ -333,6 +336,9 @@ find_completions(
333336
Attribute =:= behaviour; Attribute =:= behavior
334337
->
335338
[item_kind_module(Module) || Module <- behaviour_modules("")];
339+
%% Check for "["
340+
[{'[', _} | _] ->
341+
[list_comprehension_completion_item(Document, Line, Column)];
336342
%% Check for "[...] fun atom"
337343
[{atom, _, _}, {'fun', _} | _] ->
338344
bifs(function, ItemFormat = arity_only) ++
@@ -368,6 +374,65 @@ find_completions(
368374
find_completions(_Prefix, _TriggerKind, _Opts) ->
369375
[].
370376

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+
}.
371436

372437
-spec complete_atom(atom(), [any()], map()) -> [completion_item()].
373438
complete_atom(Name, Tokens, Opts) ->

0 commit comments

Comments
 (0)