tomasr / viasfora

A Visual Studio Extension containing miscellaneous improvements to the editor.
Other
557 stars 90 forks source link

colorizing angle brackets are not supported. #341

Closed 1821746019 closed 1 year ago

1821746019 commented 1 year ago
        template <typename Ret, typename Func, typename... Args,
                  typename = enable_if_t<is_invocable_v<Func, Args...> &&
                      (is_convertible_v<invoke_result_t<Func, Args...>, Ret> || is_same_v<Ret, nullptr_t>)>>

It is so uncomfortable to see brackets with no color.Can this feature be implemented?

tomasr commented 1 year ago

Unfortunately, no, it's impossible to do only using lexical analysis.