如何找到使用一个单词命令
设置的vim变量的值 等等 :set foldmarker = {,}我正在为foldtext()编写一个简单的自定义函数来设置折叠区域的自定义一行摘要
它工作得很好,但是当我打开带有任何折叠标记的文档时,看起来很有趣,而不是我硬编码到函数中的文件
这是函数
set foldtext=GetCustomFoldText()
function GetCustomFoldText()
let foldClose = '}'
let foldTtl = v:foldend - v:foldstart
return getline(v:foldstart) . ' (+) ' . foldTtl . ' lines... ' . foldClose
endfunction
这使得:
function myAwsomeFunction()
{
// awsomeness here
// awsomeness here
// awsomeness here
}
折叠成了这个:
function myAwsomeFunction()
{ (+) 5 lines... }
在我使用不同的foldmarker编辑文档之前,这是很棒的
我正在尝试从foldmarker动态确定foldClose
答案 0 :(得分:7)
在选项名称前使用&
:
:let g:foo = &foldmarker
:echo g:foo
答案 1 :(得分:2)
:设置全部;将打印所有vim设置
答案 2 :(得分:1)
:set foldmarker?
会显示当前的foldmarker
并且您可以使用:set xxxxx?
来获取其他设置的当前值
xxxxx是您想知道的设置。