我使用名为
AlignTab的Sublime Text 3 Plug-in来对齐我的代码,如下所示:
Version : 1.4.1 Author : Ken Wheeler Website : http://kenwheeler.github.io Docs : http://kenwheeler.github.io/slick Repo : http://github.com/kenwheeler/slick Issues : http://github.com/kenwheeler/slick/issues
现在,我想把我的文字留在这样的冒号旁边:
Version: 1.4.1 Author: Ken Wheeler Website: http://kenwheeler.github.io Docs: http://kenwheeler.github.io/slick Repo: http://github.com/kenwheeler/slick Issues: http://github.com/kenwheeler/slick/issues
我该怎么做呢
解决方法
您可以使用AlignTab执行此操作,不需要其他插件.你只需要使用
the more advanced regex functionality as described on the GitHub page.
打开命令调色板(Ctrl Shift P在Windows上或在Mac上移动P),键入“AlignTab”,按Enter键,然后输入并输入:
:/ r0clf1
道具@Hank包含0空格选项,甚至没有意识到他不想要的空间.
说明:
>:找到冒号> /说好,现在这里有一些关于我想要你做冒号的论点r表示右对齐第一列> 0表示右列之后的0个空格> c意味着居中的中间列(这只是冒号,所以它不做任何事情)> l表示右对齐右列> f1表示只对这一行进行第一场比赛