gpt4 book ai didi

vim - 如何在 Vim 语法高亮中为函数调用着色

转载 作者:行者123 更新时间:2023-12-01 10:42:22 26 4
gpt4 key购买 nike

我是 Vim 的新手,很好奇如何在定义函数后突出显示函数调用。作为 example , 在 SublimeText 版本中,totalForArray 在定义时为绿色,在第 12 行调用时也是如此。这就是我的 Vim 的样子 imgur.com/q2WMQ4d ,我想知道如何在调用 totalForArray 时突出显示它。

最佳答案

Vitor 正则表达式匹配的改进。
这将突出显示嵌套的函数调用,同时尊重像 while 这样的关键字的突出显示。 , if , for等...并且还允许在函数名称和括号之间使用空格
例如myFunction (int argc) { ... }

syn match dFunction "\zs\(\k\w*\)*\s*\ze("
hi link dFunction Function

关于vim - 如何在 Vim 语法高亮中为函数调用着色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29192124/

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