nvim: turn off digraphs when set digraph list not supported
This commit is contained in:
parent
5ea357fd2c
commit
f83df2f5a2
@ -1,27 +1,30 @@
|
|||||||
" see :help digraphs
|
" see :help digraphs
|
||||||
" these digraphs are reminiscent of canadian french keyboard layout
|
" these digraphs are reminiscent of canadian french keyboard layout
|
||||||
call digraph_setlist([
|
|
||||||
\["'a", 'à'],
|
|
||||||
\["'e", 'è'],
|
|
||||||
\["'u", 'ù'],
|
|
||||||
\["/e", 'é'],
|
|
||||||
\["}a", 'ä'],
|
|
||||||
\["}e", 'ë'],
|
|
||||||
\["}i", 'ï'],
|
|
||||||
\["}o", 'ö'],
|
|
||||||
\["}u", 'ü'],
|
|
||||||
\["}y", 'ÿ'],
|
|
||||||
\["]c", 'ç'],
|
|
||||||
\["[a", 'â'],
|
|
||||||
\["[e", 'ê'],
|
|
||||||
\["[i", 'î'],
|
|
||||||
\["[o", 'ô'],
|
|
||||||
\["[u", 'û'],
|
|
||||||
\])
|
|
||||||
|
|
||||||
" misc funny digraphs
|
if exists("*digraph_setlist")
|
||||||
call digraph_setlist([
|
call digraph_setlist([
|
||||||
\["++", '✝'],
|
\["'a", 'à'],
|
||||||
\["+-", '†'],
|
\["'e", 'è'],
|
||||||
\["m-", '—'],
|
\["'u", 'ù'],
|
||||||
\])
|
\["/e", 'é'],
|
||||||
|
\["}a", 'ä'],
|
||||||
|
\["}e", 'ë'],
|
||||||
|
\["}i", 'ï'],
|
||||||
|
\["}o", 'ö'],
|
||||||
|
\["}u", 'ü'],
|
||||||
|
\["}y", 'ÿ'],
|
||||||
|
\["]c", 'ç'],
|
||||||
|
\["[a", 'â'],
|
||||||
|
\["[e", 'ê'],
|
||||||
|
\["[i", 'î'],
|
||||||
|
\["[o", 'ô'],
|
||||||
|
\["[u", 'û'],
|
||||||
|
\])
|
||||||
|
|
||||||
|
" misc funny digraphs
|
||||||
|
call digraph_setlist([
|
||||||
|
\["++", '✝'],
|
||||||
|
\["+-", '†'],
|
||||||
|
\["m-", '—'],
|
||||||
|
\])
|
||||||
|
end
|
||||||
|
Loading…
Reference in New Issue
Block a user