gpt4 book ai didi

c++ - 包含多行函数签名的 Vim foldexpr

转载 作者:塔克拉玛干 更新时间:2023-11-03 07:33:52 25 4
gpt4 key购买 nike

我想折叠源代码,以便在函数折叠中包含跨越多行的函数签名。例如,在 C++ 中,我想

void ClassName::FunctionName(LongType1 LongArgument1,
LongType2 LongArgument2,
LongType3 LongArgument3) {
...
}

折叠成

+-- 5 lines: void ClassName::FunctionName [...]

而不是

void ClassName::FunctionName(LongType1 LongArgument1,
LongType2 LongArgument2,
+-- 3 lines: LongType3 LongArgument3) [...]

其中 + 表示闭合折叠。

我能想到的唯一解决方案是为 foldexpr 使用一个函数,它有效地遍历周围的行以寻找 {} .

有没有更简洁的方法来做到这一点?

最佳答案

我的 VimFold4C插件将显示更接近您正在寻找的内容(3 年前...)

+void ClassName::FunctionName(LongType1 LongArgument1, LongType2 LongArgument2, LongType3 LongArgument3) ----------

foldtext 目前还不是很完善,但将来可能会在这个主题上进行改进。不管怎样,这次你只会得到一行。

关于c++ - 包含多行函数签名的 Vim foldexpr,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8316765/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com