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.
2 parents 54bebd7 + 0bad2a3 commit c7d2709Copy full SHA for c7d2709
test/elixir-mode-indentation-tests.el
@@ -125,6 +125,22 @@ defmodule FooBar do
125
end
126
end")
127
128
+(elixir-def-indentation-test indents-do-blocks-with-space-after-inline (:expected-result :failed)
129
+ "defmodule Foo do
130
+def foobar do
131
+if true, do: IO.puts \"yay\"
132
+
133
+20
134
+end
135
+end"
136
137
+ def foobar do
138
+ if true, do: IO.puts \"yay\"
139
140
+ 20
141
+ end
142
+end")
143
144
(elixir-def-indentation-test indents-after-empty-line
145
()
146
"
0 commit comments