Jon Häggblad

Results 35 comments of Jon Häggblad

The added highlight groups work great. Is it possible to also add a highlight group for function invocations/calls? With function calls (and template classes) highlighted, this plugin would replace [vim-cpp-enhanced-highlight](http://github.com/octol/vim-cpp-enhanced-highlight)...

With the latest version function invocations now work, and class template declarations as well. Great work! Three things that are not yet included in any syntax group: - Templated variable...

Fixed: - I got 'It' in the above example highlighted correctly in the latest commit. - Templated variably types work too. Left to do: - Functions declarations inside classes, such...

Great work adding class functions in 2ac874abcca63ad13574c248f88e30cefad7d6a4. Constructors are not yet highlighted though...

Another missing highlight: ``` std::for_each(begin(threads), end(threads), [](std::thread & t) { t.join(); }); ``` Here "join" is not highlighted as a function.

Also: ``` vector test = {1, 2}; vector test2(test.size()); ``` "size" is not highlighted as a function

Must say though, with the latest added highlight groups this plugin is really coming together for me. Soon I'll be able to use it full time :)

Ah I see. I had wrongly thought that MemberRefExpr refered to member variables. Enabling it indeed highlights member function calls correctly, but also includes member variables. Ideally I'd prefer to...

Yes I have done that. In the above example std::cout and std::endl is highlighted but not std::chrono or std::milli. Also note that std::chrono in ``` auto end = std::chrono::steady_clock::now(); ```...

Here is a screenshot of what I'm seeing: ![chrono](https://cloud.githubusercontent.com/assets/1894054/7098856/02fbafe8-dfdf-11e4-9430-e3383f093cf1.png) I have enabled all highlight groups.