elixir-editors/vim-elixir

Indent: Incorrect indentation after slash

kyrias opened this issue · 0 comments

Actual

assert response =~ ~r/foo/
  assert response =~ "bar"

Expected

assert response =~ ~r/foo/
assert response =~ "bar"