我在某个地方看到了这个,但现在找不到了。emacs 中是否有内置函数,或者是否有人有 elisp,可以在 cc 模式下将一系列初始化语句中的所有等号对齐?
前:
int t=9;
Graphics g = new Graphics();
List<String> list = new List<String>();
后:
int t = 9;
Graphics g = new Graphics();
List<String> list = new List<String>();