diff options
author | André Twupack <atwupack@mailbox.org> | 2014-08-13 20:29:12 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2014-08-14 06:24:00 +0000 |
commit | 9fb0026fccf337a4c671bfa4f553c08da1e8722d (patch) | |
tree | 721b8248b1426dec1feae239dba99e872b92b194 /src/nvim/digraph.c | |
parent | fde390133e4cd176a693b1d01c013e03e4606e8a (diff) | |
download | rneovim-9fb0026fccf337a4c671bfa4f553c08da1e8722d.tar.gz rneovim-9fb0026fccf337a4c671bfa4f553c08da1e8722d.tar.bz2 rneovim-9fb0026fccf337a4c671bfa4f553c08da1e8722d.zip |
vim-patch:7.4.335 #1061
Problem: No digraph for the new rouble sign.
Solution: Add the digraphs =R and =P.
https://code.google.com/p/vim/source/detail?r=8ad2ecd116021ad5c945426e8bb80d741392b780
Diffstat (limited to 'src/nvim/digraph.c')
-rw-r--r-- | src/nvim/digraph.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/nvim/digraph.c b/src/nvim/digraph.c index 8edb12526c..f41a16bc1b 100644 --- a/src/nvim/digraph.c +++ b/src/nvim/digraph.c @@ -835,6 +835,8 @@ static digr_T digraphdefault[] = { 'W', '=', 0x20a9 }, { '=', 'e', 0x20ac }, // euro { 'E', 'u', 0x20ac }, // euro + { '=', 'R', 0x20bd }, // rouble + { '=', 'P', 0x20bd }, // rouble { 'o', 'C', 0x2103 }, { 'c', 'o', 0x2105 }, { 'o', 'F', 0x2109 }, |