有没有办法在VIM中的:digraph
表内搜索? \
没有用,我的眼睛正在分开寻找我想要的字形..
答案 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 answer,Bill Odom’s answer on directing ex commands to a buffer和Capturing 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()