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.
我知道gf试图打开光标下的文件。我想知道是否有一种方法可以利用文件名识别部分gf轻松直观地选择光标下的文件名或 url?
gf
的文件名检测gf由'isfname'选项提供支持。还有一个对应的正则表达式 atom \f。因此,您可以使用以下命令搜索光标下的当前文件名(aka <cfile>):
'isfname'
\f
<cfile>
:let @/ = '\f*\%#\f*'
在最近的 Vim 7.3 版本中,您可以使用该gn命令来选择匹配项。
gn