Is there a vim plugin for highlighting semantics / syntax?

I have a question about whether a vim plugin exists. I searched for it and could not find anything, so I thought that maybe I used the wrong key terms in my search. I recently read this article https://medium.com/p/3a6db2743a1e about semantic coloring, where each unique variable / function / etc. the name has one color assigned to him. So my question would be, is there a vim plugin that does this, at least for C / C ++?

+4
source share
1 answer

This idea is usually promoted by Douglas Crockford, a well-known JavaScript guru and supporting JSLint. He added the beginning of this JSLint idea last year . Since his proposal is presented in JavaScript and JavaScript, I only know that it is available in JavaScript.

There is a plugin for coloring JavaScript context in vim. However, I don't think anything exists for C / C ++.

+4
source

Source: https://habr.com/ru/post/1524234/


All Articles