summaryrefslogtreecommitdiff
path: root/lib/tools/emacs/test.erl.indented
diff options
context:
space:
mode:
authorMagnus Henoch <magnus.henoch@gmail.com>2013-06-18 12:38:41 +0100
committerMagnus Henoch <magnus.henoch@gmail.com>2013-06-18 12:38:41 +0100
commit104c60227d3efea4c858a32c486ee15127d6edbc (patch)
treec9faafb4155124435a0ea8fbd26dbf093167f378 /lib/tools/emacs/test.erl.indented
parent5dd13b1efead2a8101ff1fb46937fbfa00db5269 (diff)
downloaderlang-104c60227d3efea4c858a32c486ee15127d6edbc.tar.gz
Inside parentheses, line-initial commas align with the open parenthesis
For example: [ one , two , three ] This does not affect coding styles that don't put commas at the beginning of lines.
Diffstat (limited to 'lib/tools/emacs/test.erl.indented')
-rw-r--r--lib/tools/emacs/test.erl.indented31
1 files changed, 31 insertions, 0 deletions
diff --git a/lib/tools/emacs/test.erl.indented b/lib/tools/emacs/test.erl.indented
index 6c9343f6cb..7e61bcc45b 100644
--- a/lib/tools/emacs/test.erl.indented
+++ b/lib/tools/emacs/test.erl.indented
@@ -700,3 +700,34 @@ some_function_name_xyz(xyzzy, #some_record{
field2 = Field1,
field2 = Field2}}),
{ok, SomeVariable}.
+
+commas_first() ->
+ {abc, [ {some_var, 1}
+ , {some_other_var, 2}
+ , {erlang_ftw, 9}
+ , {erlang_cookie, 'cookie'}
+ , {cmds,
+ [ {one, "sudo ls"}
+ , {one, "sudo ls"}
+ , {two, "sudo ls"}
+ , {three, "sudo ls"}
+ , {four, "sudo ls"}
+ , {three, "sudo ls"}
+ ] }
+ , {ssh_username, "yow"}
+ , {cluster,
+ [ {aaaa, [ {"10.198.55.12" , "" }
+ , {"10.198.55.13" , "" }
+ ] }
+ , {bbbb, [ {"10.198.55.151", "" }
+ , {"10.198.55.123", "" }
+ , {"10.198.55.34" , "" }
+ , {"10.198.55.85" , "" }
+ , {"10.198.55.67" , "" }
+ ] }
+ , {cccc, [ {"10.198.55.68" , "" }
+ , {"10.198.55.69" , "" }
+ ] }
+ ] }
+ ]
+ }.