diff options
author | Bram Moolenaar <Bram@vim.org> | 2018-02-27 21:09:30 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2018-02-27 21:09:30 +0100 |
commit | 5f73ef8d20070cd45c9aea4dc33c2e0657f5515c (patch) | |
tree | 4a223aa7d89da5c1d733287193626efee279155e /src/proto/digraph.pro | |
parent | 8195247054a659fe5cbc238197634d5e13e8e8e9 (diff) | |
download | vim-git-5f73ef8d20070cd45c9aea4dc33c2e0657f5515c.tar.gz |
patch 8.0.1553: cannot see what digraph is used to insert a characterv8.0.1553
Problem: Cannot see what digraph is used to insert a character.
Solution: Show the digraph with the "ga" command. (Christian Brabandt)
Diffstat (limited to 'src/proto/digraph.pro')
-rw-r--r-- | src/proto/digraph.pro | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/proto/digraph.pro b/src/proto/digraph.pro index 3cb7dceb2..dfadc9dad 100644 --- a/src/proto/digraph.pro +++ b/src/proto/digraph.pro @@ -1,5 +1,6 @@ /* digraph.c */ int do_digraph(int c); +char_u *get_digraph_for_char(int val); int get_digraph(int cmdline); int getdigraph(int char1, int char2, int meta_char); void putdigraph(char_u *str); |