BB Chung
BB Chung
I will list all highlight groups in next release, and make them as an option
plz update clighter to get these work, and this is default settings. 1.Function invocations hi default link clighterDeclRefExprCall Identifier -> disable 2.Function declarations hi default link clighterFunctionDecl Function -> disable...
Ok, I add more template support in 95e48b5f1772d7cb21199bdde23da73124479762 . By the way, in my environment, 'It' before 'from'/'to' is highlighted in 2b36f5ebbaa93b91fde222f5c5de000a96c2c0e0. Thanks for your testing and keep testing :)
to enable member ref, you must add 'clighterMemberRefExpr' into g:clighter_syntax_groups
To enable namespace ref highlight, add 'clighterNamespace' into g:clighter_syntax_groups
That's because in first line, clang see 'std' as "CursorKind.NAMESPACE_REF", but see as "CursorKind.CALL_EXPR" in second line
Clang see both member ref call/var as MEMBER_REF_EXPR. So clighter differentiates them by their type kind, and the most rational way for now is treating cindex.TypeKind.UNEXPOSED as call ref, and...
 This is what I see of clighterMemberRefExprVar Your color scheme looks good
As I remembered, if compile args pass to libclang contains 'gcc(or g++)' or 'filename.cpp', then libclang will crash, so currently clighter8 uses a walkaround that always dropping the first arg(gcc/g++)...