Skip to content

Commit f86b165

Browse files
committed
Make the bool face inherit from numbers by default
In the spirit that bools are number-y.
1 parent 7a98fe1 commit f86b165

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/JuliaSyntaxHighlighting.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ const HIGHLIGHT_FACES = [
8989
:julia_char => Face(inherit=:julia_string),
9090
:julia_char_delim => Face(inherit=:julia_string_delim),
9191
:julia_number => Face(),
92-
:julia_bool => Face(),
92+
:julia_bool => Face(inherit=:julia_number),
9393
:julia_funcall => Face(),
9494
:julia_funcdef => Face(inherit=:julia_funcall),
9595
:julia_broadcast => Face(inherit=:julia_operator),

0 commit comments

Comments
 (0)