使用 Vim 表格插件对齐非连续行上的文本

发布于 2024-10-30 16:34:43 字数 675 浏览 0 评论 0原文

我想对齐这些代码行:

    let cty                     = -- trace ("new var " ++ (show vname) ++ " " ++ (show exp1))
              synthTy ctx vtype
        newctx                  = C.addLocalVar ctx vname cty
        ckd                     = checkExp newctx exp1 cty

像这样:

    let cty     = -- trace ("new var " ++ (show vname) ++ " " ++ (show exp1))
                  synthTy ctx vtype
        newctx  = C.addLocalVar ctx vname cty
        ckd     = checkExp newctx exp1 cty

使用 vim 的表格插件,如果我突出显示所有行并输入 :Tab /=,它们会在我输入时对齐第一个案例。我希望他们像第二个案例一样排队。如何让第二行与第二组而不是第一组匹配?我可以作弊并在第二行的单词之前添加一个等号,但我认为必须有更好的方法。

I'd like to align these lines of code:

    let cty                     = -- trace ("new var " ++ (show vname) ++ " " ++ (show exp1))
              synthTy ctx vtype
        newctx                  = C.addLocalVar ctx vname cty
        ckd                     = checkExp newctx exp1 cty

like this:

    let cty     = -- trace ("new var " ++ (show vname) ++ " " ++ (show exp1))
                  synthTy ctx vtype
        newctx  = C.addLocalVar ctx vname cty
        ckd     = checkExp newctx exp1 cty

With the tabular plugin for vim, if I highlight all the lines and type :Tab /=, they align as I've typed them in the first case. I'd like them to line up like the second case. How can I get the second line to match with the second group instead of the first? I can cheat and add an equals before the words on the 2nd line, but I think there's got to be a better way.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

冷弦 2024-11-06 16:34:43

试试这个:

:Tabularize/=.*$\|^\s*\zs  [^=]\+$

Try this:

:Tabularize/=.*$\|^\s*\zs  [^=]\+$
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文