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.
我在 Windows 上使用 VIM 7.2,最新的 netrw(141i,2011 年 1 月 3 日)。
我使用 netrw 浏览远程 FTP 导向器。现在,当我想导航到某个文件时,我键入/<filename>,VIM 自己的搜索功能将光标移到那里。然后我必须点击ENTER两次(一次退出搜索模式,然后再次使 netrw “执行”该文件)。
/<filename>
ENTER
我确信有更好的方法来做到这一点。有任何想法吗?
谢谢你。
似乎您具有在'incsearch'键入时显示模式出现的设置。有必要按 Enter 来验证模式,然后您将返回缓冲区。
'incsearch'
也许 Fuzzyfinder 插件可以帮助你更快。
您可以使用 : set incsearch在您.vimrc的启用增量搜索。
set incsearch
.vimrc
您仍然需要输入<Enter>两次,但不必输入完整的文件名!
<Enter>