Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用带有标准 ruby-vim 插件的 vim。所有保留字和控制流关键字都很好地突出显示,并且缩进似乎运行良好。但是,没有突出显示任何方法名称。如果我.chomp在变量上调用方法,它是白色的。print如果我调用类似or的内置方法puts,它是白色的。有没有其他人遇到过这个。任何人有任何安装或修复它?
.chomp
print
puts
这是因为给定 ruby 语法,很难区分局部变量和方法调用。语法荧光笔通常不是代码解析器。
将此问题视为参考: https ://github.com/vim-ruby/vim-ruby/issues/6