Hi, All!

In my source code I have some c-like macroses
How can I highlight this macroses? It it possible?

What I want is

file1 header_file.h
...
#define MYVAR 1
...

file2 my_source_code.c

#include "header_file.h"
...
void somefunc()
{
  int x = MYVAR;
          ^------- highlight this
          
}
...



Thanks in advance,
Agibov Dmitry



Reply via email to