-
Notifications
You must be signed in to change notification settings - Fork 94
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fontify ~D() sigil #373
Fontify ~D() sigil #373
Conversation
couldn't get the tests to run on my machine ~ I will fix them later today |
@@ -167,7 +167,7 @@ | |||
(or "_" "__MODULE__" "__DIR__" "__ENV__" "__CALLER__" | |||
"__block__" "__aliases__") | |||
symbol-end)) | |||
(sigils . ,(rx "~" (or "B" "C" "R" "S" "b" "c" "r" "s" "w"))))) | |||
(sigils . ,(rx "~" (or "D" "B" "C" "R" "S" "b" "c" "r" "s" "w"))))) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should "D"
be after "C"
? Because original order is ascii(alphabetical) order.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Alright ~ fair point.
Done !
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the contributions. 👍
Could you try to fix the tests so we could merge this PR. 😄
This commit adds fontification support to the new date sigil added in Elixir 1.3 Signed-off-by: Milhouse <renanranelli@gmail.com>
Fixed @tonini :) I got the wrong position in the test ~ |
Thanks @rranelli 👍 |
always happy to help <3 |
This commit adds fontification support to the new date sigil added in Elixir 1.3
Signed-off-by: Milhouse renanranelli@gmail.com