如何让自动完成功能填写 full_methods 而不是仅填写 full
我写了很多“like_this”方法。当我按“l
最诚挚的问候,
——杰克
I write a lot of methods "like_this". When I press "l< Tab >" to autocomplete all I am offered is "like". Is there a way to configure VIM to give me "like_this" as an option?
Kindest of Regards,
-- Jack
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
@Randy Morris 的评论值得探索,输入
setcompleteopt?
看看你有什么,然后:helpcompleteopt
来探索你的选择。但我认为这可能是因为你的 vim 默认将
_
视为单词分隔符。输入:set iskeyword?
来查看,我的输入是iskeyword=@,48-57,_,192-255
。输入
:help iskeyword
了解更多信息。@Randy Morris's comment is worth exploring, type
set completeopt?
to see what you have then:help completeopt
to explore your choices.But I think that's probably because your vim considers
_
as a word delimiter by default. Check it out by typing:set iskeyword?
, mine saysiskeyword=@,48-57,_,192-255
.Type
:help iskeyword
for more information.