How can I get the word under the cursor and the text of the current line in vim script?

匿名 (未验证) 提交于 2019-12-03 02:47:02

问题:

I'm new to Vim. Now I'm trying to write a vim script. How can I get the word under the cursor and the text of the current line? I want to use it in my script, thanks.

回答1:

You can with expand and getline:

let wordUnderCursor = expand("<cword>") let currentLine   = getline(".") 


标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!