" " digraph_search.vim: Insert mode mappings to find a digraph by searching for " its name in the contents of :help digraph-table. " " Author: Tom Ryder " License: Same as Vim itself " if exists('g:loaded_digraph_search') || &compatible finish endif if !has('digraphs') || v:version < 700 finish endif let g:loaded_digraph_search = 1 " Set up mapping inoremap \ (DigraphSearch) \ :call digraph_search#Search()