我正在尝试使用tabularize在 vim 中对齐以下文本:
typedef struct {
int a;
int *pa;
float b;
float *pb;
double c;
double *pc;
} foo_t;
对此:
typedef struct {
int a;
int *pa;
float b;
float *pb;
double c; /* notice there's only one space between 'double' and 'c' */
double *pc;
} foo_t;
我尝试使用,但它在和:'<,'>Tab/.*\s
之间留下了两个空格。我怎样才能做到这一点?double
c