mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
vdoc: highlight generic struct everywhere (#15506)
This commit is contained in:
parent
3c23eebe51
commit
d08edf8cba
@ -212,7 +212,7 @@ fn color_highlight(code string, tb &ast.Table) string {
|
||||
&& (next_tok.kind != .lpar || prev.kind !in [.key_fn, .rpar]) {
|
||||
tok_typ = .builtin
|
||||
} else if
|
||||
(next_tok.kind in [.lcbr, .rpar, .eof, .comma, .pipe, .name, .rcbr, .assign, .key_pub, .key_mut, .pipe, .comma, .comment]
|
||||
(next_tok.kind in [.lcbr, .rpar, .eof, .comma, .pipe, .name, .rcbr, .assign, .key_pub, .key_mut, .pipe, .comma, .comment, .lt]
|
||||
&& next_tok.lit !in builtin)
|
||||
&& (prev.kind in [.name, .amp, .lcbr, .rsbr, .key_type, .assign, .dot, .question, .rpar, .key_struct, .key_enum, .pipe, .key_interface, .comment, .ellipsis]
|
||||
&& prev.lit !in builtin) && ((tok.lit != '' && tok.lit[0].is_capital())
|
||||
|
Loading…
Reference in New Issue
Block a user