想请问版上各位先进,Vim 的配色有没有比较接近下面这个样子的配色?
#include <iostream>
#include "Array.h"
using namespace std;
int main() {
Array *array = new array(10);
for(int i = 0; i < array->length; i++) {
array->set(i,i+1);
}
for(int i = 0; i < array->length; i++) {
cout << array->get(i) << " ";
}
cout << endl;
delete array;
return 0;
}
我现在用的 colorscheme 是 default ,基本上满意,
但是他不会对自己写的 class 跟 function 上色。我试过加上下面这些设定
" Highlight Class and Function names
syn match cCustomParen "(" contains=cParen,cCppParen
syn match cCustomFunc "\w\+\s*(" contains=cCustomParen
syn match cCustomScope "::"
syn match cCustomClass "\w\+\s*::" contains=cCustomScope
hi def link cCustomFunc Function
hi def link cCustomClass Function
现在可以 match 到自订的 class 跟 function ,
但是配的颜色是淡蓝色,跟注解的颜色太接近,看起来不是很舒服。
所以想请问有没有比较接近上面例子的配色?谢谢。