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.
1 parent 6ff1db2 commit f872f36Copy full SHA for f872f36
test/elixir-mode-font-tests.el
@@ -46,3 +46,12 @@ buffer."
46
(should (eq (elixir-test-face-at 41) 'font-lock-type-face))
47
(should (eq (elixir-test-face-at 52) 'font-lock-type-face))
48
(should (eq (elixir-test-face-at 53) 'font-lock-type-face))))
49
+
50
+(ert-deftest elixir-mode-syntax-table/fontify-regex-with-quote ()
51
+ "https://github.com/elixir-lang/emacs-elixir/issues/23"
52
+ :tags '(fontification syntax-table)
53
+ :expected-result :failed
54
+ (elixir-test-with-temp-buffer
55
+ "~r/\"/
56
+x = 15"
57
+ (should (eq (elixir-test-face-at 7) 'font-lock-variable-name-face))))
0 commit comments