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