Skip to content

Commit 3c4877a

Browse files
committed
[julia mode] Recognize === and !== operators
Closes #6913
1 parent d053a59 commit 3c4877a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mode/julia/julia.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ CodeMirror.defineMode("julia", function(config, parserConf) {
2424
var uChar = "([^\\u0027\\u005C\\uD800-\\uDFFF]|[\\uD800-\\uDFFF][\\uDC00-\\uDFFF])";
2525

2626
var asciiOperatorsList = [
27-
"[<>]:", "[<>=]=", "<<=?", ">>>?=?", "=>", "--?>", "<--[->]?", "\\/\\/",
27+
"[<>]:", "[<>=]=", "<<=?", "[!=]==", ">>>?=?", "=>", "--?>", "<--[->]?", "\\/\\/",
2828
"\\.{2,3}", "[\\.\\\\%*+\\-<>!\\/^|&]=?", "\\?", "\\$", "~", ":"
2929
];
3030
var operators = parserConf.operators || wordRegexp([

0 commit comments

Comments
 (0)