我刚刚安装了Unite (带有vundle),所以我的.vimrc只有一个新行:Plugin 'unite.vim'
然后我就这么做:
vi。:Unite file_recipdf,但任何搜索文本都会出现问题)find . -iname '*pdf*'检索的完整文件集的子集。(我知道目录没有列出候选结果,但我在结果中看不到普通文件(它们既不是符号链接,也不是特殊权限文件)。此外,我用<C-L>刷新了结果/缓存,但结果仍然是部分的。
这不是file_rec搜索吗?这是我期望的Unite特性吗?如果不是,哪一个是覆盖默认行为并使Unite搜索正常(find . -iname '*xxxxx*')的最佳选项?
谢谢。
发布于 2016-03-16 16:32:58
我找到了原因。结果(g:unite_source_rec_unit)的最大数目有一个内置值,文档中写着:The default value is 1000(windows environment), 2000(other)
[...]If you increase the value, |unite-source-file_rec| will be
faster but it will block Vim for a long time.
Note: This option does not work in
|unite-source-file_rec/async| source.https://stackoverflow.com/questions/36037414
复制相似问题