gpt4 book ai didi

vim - 如何在 Unite.vim 中导航结果(候选人)?

转载 作者:行者123 更新时间:2023-12-04 13:32:21 26 4
gpt4 key购买 nike

unite.vim 中搜索后,你打开一个候选人。有没有一种简单的方法可以跳转到下一个而无需再次运行搜索命令?类似的插件( ack.vimgit-grep )使用快速修复窗口,因此您可以输入 :cn:cp跳转到下一个/上一个结果。 unite.vim 有没有类似的?

谢谢!

最佳答案

我还没有找到将结果放入快速修复或位置列表的方法,但我相信您可以扩展 Unite 以包含该操作。

同时,Unite 文档中的这段小摘录可以帮助您重新打开您最近打开的 Unite 缓冲区:

:UniteResume [{options}] [{buffer-name}]    *:UniteResume*
Reuses the unite buffer named {buffer-name} that you opened
previously. Narrowing texts or candidates are
as-is. If {options} are given, context information gets
overridden.

Note: Reuses the last unite buffer you used in current tab if
you skip specifying {buffer-name}.

我在我的 vimrc 中以下列方式使用它:
 " Press <leader>ll to re-open last Unite buffer
nnoremap <silent><leader>ll :<C-u>UniteResume<CR>

文档中另一个有用的片段:
    -no-quit
Doesn't close unite buffer after firing an action. Unless you
specify it, a unite buffer gets closed when you selected an
action which is "is_quit".

-keep-focus
Keep the focus on a unite buffer after firing an action.
Note: This option is used with "-no-quit" option.

例如,您可以绑定(bind)
nnoremap <silent><leader>lg :<C-u>Unite -no-quit -keep-focus grep<CR>

能够按 <leader>lg grep 浏览源文件,而无需在选择项目时关闭或分散 Unite 缓冲区的焦点。

关于vim - 如何在 Unite.vim 中导航结果(候选人)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21878402/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com