Is there a way to search inside a table :digraphin VIM? \doesn’t work, and my eyes scatter along the glyphs I desire.
:digraph
\
You can capture the actual output :digraphin the scratch buffer with:
:redir @a | silent digraph | redir END | new +setl\ buftype=nofile\ bufhidden=wipe | put! a
try :h digraph-tablethere you can search using/ or ?
:h digraph-table
/ or ?
, unicode-plugin :Digraphs foobar , foobar
:Digraphs foobar
Combination Response to the accepted Ingos , Bill Odoms responds to pointing ex commands to the buffer and Capturing the ex command output from the Vim Tips Wiki creates the following snippet for yours .vimrc.
.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()