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 5870712 commit 9f71050Copy full SHA for 9f71050
src/JuliaSyntaxHighlighting.jl
@@ -54,9 +54,9 @@ const HIGHLIGHT_FACES = [
54
# Julia syntax highlighting faces
55
:julia_macro => Face(),
56
:julia_symbol => Face(),
57
- :julia_singleton_identifier => Face(),
+ :julia_singleton_identifier => Face(inherit=:julia_symbol),
58
:julia_type => Face(),
59
- :julia_typedec => Face(),
+ :julia_typedec => Face(inherit=:julia_operator),
60
:julia_comment => Face(foreground=:grey),
61
:julia_string => Face(foreground=:green),
62
:julia_regex => Face(),
@@ -69,10 +69,10 @@ const HIGHLIGHT_FACES = [
69
:julia_number => Face(),
70
:julia_bool => Face(),
71
:julia_funcall => Face(),
72
- :julia_broadcast => Face(),
+ :julia_broadcast => Face(inherit=:julia_operator),
73
:julia_builtin => Face(),
74
:julia_operator => Face(),
75
- :julia_comparator => Face(),
+ :julia_comparator => Face(inherit=:julia_operator),
76
:julia_assignment => Face(),
77
:julia_keyword => Face(foreground=:red),
78
:julia_parentheses => Face(),
0 commit comments