我使用 taglist() 来获取标签列表。然后我做了一些过滤,只留下一些像这样有用的:
let tttlist = taglist("^List$")
"echo ttt
let newtttlist = []
for item in tttlist
if item['kind'] == 'i' || item['kind'] == 'c'
call add(newtttlist, item)
endif
endfor
echo newtttlist
但是如何在 vim 中像 :tag 和 :ptag 一样显示它们呢?