I am using Notepad++ v3.6. I have the following line in my langs.xml file. I want c++ syntax highlighting for files with an extension of .C.
<Language name="cpp" ext="C H h hpp hxx cpp cxx cc" commentLine="//" commentStart="/*" commentEnd="*/">
Even with this change, it uses the syntax highlighting of c only and not C++. Is there a way to force it to use C++ syntax highlighting.
Thanks,
Ram
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I am using Notepad++ v3.6. I have the following line in my langs.xml file. I want c++ syntax highlighting for files with an extension of .C.
<Language name="cpp" ext="C H h hpp hxx cpp cxx cc" commentLine="//" commentStart="/*" commentEnd="*/">
Even with this change, it uses the syntax highlighting of c only and not C++. Is there a way to force it to use C++ syntax highlighting.
Thanks,
Ram
My first guess: It's probably finding the C support before the C++ support. --Joel