2

我最近经常使用 D 并使用 Vim 作为编辑器。我处理的代码有很多内联单元测试,我想折叠这些,所以我只能看到代码。要自动折叠这些单元测试,Vim 中的折叠表达式需要什么?

以下是它们在 D 代码中的外观示例:

T getUnixTime(T, A...)(A args)
{
    return to!T(SysTime(DateTime(args)).toUnixTime());
}

unittest
{
    assert(getUnixTime!string(2013, 7, 18, 14, 49, 43) == "1374155383");
    assert(getUnixTime!uint(2071, 12, 5, 12, 9, 5) == 3216542945);
}

我希望它看起来像:

T getUnixTime(T, A...)(A args)
{
    return to!T(SysTime(DateTime(args)).toUnixTime());
}

+--  5 lines: unittest----------------------------------------------------------
4

2 回答 2

2

您是在寻找“折叠表达式”还是“折叠命令”?

假设你的光标在unittest,你可以做

zf/{/e

创建折叠。

使其成为更快的映射。

于 2013-07-25T07:10:33.947 回答
0

抱歉回复晚了。我一直在寻找相同的功能,最终想出了这个:

set foldexpr=DlangUnitTestFold(v:lnum)

" If the line matches `unittest {`, increase the indentation.
" Keep the indentation level steady until we encounter a line
" that only matches `}`: if so, decrease the indentation.

function! DlangUnitTestFold(lnum)
  if getline(a:lnum) =~ '^\s*unittest\s{\s*$'
    return "a1"
  elseif getline(a:lnum) =~ '^\s*}\s*$'
    return "s1"
  else
    return "="
  endif
endfunction

不确定这是否太hacky,但它对我有用:)

编辑:理想情况下,您会将第一行放在 setlocal 中,例如:

au BufNewFile,BufRead *.d setlocal foldexpr=DlangUnitTestFold(v:lnum)
于 2016-04-30T16:36:26.820 回答