We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e996a38 commit 9e49ac1Copy full SHA for 9e49ac1
apps/language_server/lib/language_server/providers/completion.ex
@@ -326,7 +326,7 @@ defmodule ElixirLS.LanguageServer.Providers.Completion do
326
Atom.to_string(required_alias)
327
|> String.replace_prefix("Elixir.", "")
328
329
- indentation = 1..column_to_insert_alias//1 |> Enum.map(fn _ -> " " end) |> Enum.join()
+ indentation = 1..column_to_insert_alias |> Enum.map(fn _ -> " " end) |> Enum.join()
330
alias_edit = indentation <> "alias " <> alias_value <> "\n"
331
332
struct(completion_without_additional_text_edit,
0 commit comments