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 ad7d1a0 commit cf5ffcfCopy full SHA for cf5ffcf
apps/language_server/lib/language_server/experimental/code_mod/diff.ex
@@ -79,12 +79,12 @@ defmodule ElixirLS.LanguageServer.Experimental.CodeMod.Diff do
79
80
for ending <- ["\r\n", "\r", "\n"] do
81
defp advance_ins(<<unquote(ending), rest::binary>>, position, edits) do
82
- advance(rest, position, edits)
+ advance_ins(rest, position, edits)
83
end
84
85
86
defp advance_ins(<<_c::utf8, rest::binary>>, position, edits) do
87
88
89
90
defp advance(<<>>, position, edits) do
0 commit comments