一 工具下载
Code alignment (VS2012-2019) - Visual Studio Marketplace
二 使用文档
Align by space · cpmcgrath/codealignment Wiki (github.com)
三 使用实例
Ctrl + Shift + Equals:自定义对齐方式
实用对齐方式:
1)m_
2)最短单词后插入,然后空格对齐。
3)正则对齐:
,\s*(?[^\s])
\s+(?[^\s\(]+)\s*\(
最后配合手动空格和多列选择操作(Alt Shift )。
4)其他:
\s+(?[^\s]) //Align by space
\s+(?[^\s]) //Insert at the same location
\s+(?[^\s]+)(?) //And compare at the end of the word.