我正在使用带有 Unite 插件的 Vim。
我的 vimrc 文件中有一个键映射,如下所示,
nnoremap <Leader>t :Unite -start-insert file_rec<CR>
它按预期工作。唯一的问题是,当我在目录中创建一个新文件并尝试使用 t 搜索时,新文件不会出现。我想我需要重新创建 Unite 用于快速搜索文件的索引。我什至不确定 Unite 是否使用这样的索引。这只是我的猜测。
但是有没有办法让 Unite 在我搜索时显示新创建的文件?
我正在使用带有 Unite 插件的 Vim。
我的 vimrc 文件中有一个键映射,如下所示,
nnoremap <Leader>t :Unite -start-insert file_rec<CR>
它按预期工作。唯一的问题是,当我在目录中创建一个新文件并尝试使用 t 搜索时,新文件不会出现。我想我需要重新创建 Unite 用于快速搜索文件的索引。我什至不确定 Unite 是否使用这样的索引。这只是我的猜测。
但是有没有办法让 Unite 在我搜索时显示新创建的文件?
从插件的文档中:
Q: Some files are not showing up in file_rec(/async) candidates. What's up with that? A: You need to update the cache. Press |<Plug>(unite_redraw)| (<C-l>) when unite is focused.