unite.vim中搜索之后,您将打开一个候选者。有没有一种简便的方法可以跳到下一个而不需要再次运行search命令?类似的插件(ack.vimgit-grep)使用quickfix窗口,因此您可以键入:cn:cp跳到下一个/上一个结果。 unite.vim中有类似的东西吗?

谢谢!

最佳答案

尽管我确信您可以扩展Unite使其包含该操作,但我还没有设法将结果放入Quickfix或位置列表中。

同时,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/

10-10 05:28