我具有align_with_tabs = true指令,但是尾随注释仅使用空格对齐。我有align_right_cmt_at_col = 50,结尾的注释确实从这里开始。 例如:
a = 2; // comment (with spaces between ; and /)
我想要:
a = 2;<tab><tab><tab><space><space>// comment (appropriate number of <tab> and spaces to get to col 50)
什么指令可以实现这一目标? 谢谢 oldunixguy