From 3262b70fb405ae0154a1b96f8579763942f0efa5 Mon Sep 17 00:00:00 2001 From: Fredrik Ekre Date: Sat, 13 Jul 2024 11:41:23 +0200 Subject: [PATCH] README improvements --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index a1b7cef..a5a2447 100644 --- a/README.md +++ b/README.md @@ -46,6 +46,10 @@ invoked with the `-m` flag. See the output of `julia -m Runic --help` for detail > ```sh > julia -e 'using Runic; exit(Runic.main(ARGS))' -- > ``` +> For this incantation the following shell alias can be used: +> ```sh +> alias runic="julia -e 'using Runic; exit(Runic.main(ARGS))' --" +> ``` ``` $ julia-master -m Runic --help @@ -363,7 +367,7 @@ Consistently use single space around keywords. Examples: Listlike expressions (tuples, function calls/definitions, array literals, etc.) that *already* span multiple lines are formatted to consistently have a leading and a trailing -newline. Examples: +newline, as well as a trailing comma where applicable. Examples: ```diff -(a, - b)