有没有办法搜索Vim中的有向图

时间:2014-10-07 10:07:45

标签: vim

有没有办法在VIM中的:digraph表内搜索? \没有用,我的眼睛正在分开寻找我想要的字形..

4 个答案:

答案 0 :(得分:7)

尝试:h digraph-table,您可以使用/ or ?

进行搜索

答案 1 :(得分:5)

您可以通过以下方式捕获暂存缓冲区中的实际:digraph输出:

:redir @a | silent digraph | redir END | new +setl\ buftype=nofile\ bufhidden=wipe | put! a

答案 2 :(得分:2)

除了给出的答案,你可以尝试我的unicode-plugin 然后,您可以使用:Digraphs foobar搜索名称与foobar

匹配的有向图

答案 3 :(得分:0)

结合来自Vim Tips Wiki的Ingo’s accepted answerBill Odom’s answer on directing ex commands to a bufferCapturing ex command output会为您的.vimrc生成以下代码段。

function! TabDigraphs()
  redir => message
    silent digraphs
  redir END
  tabnew
  setlocal buftype=nofile bufhidden=wipe
  silent put =message
  setlocal nomodified
endfunction
command! TabDigraphs call TabDigraphs()