mirror of
https://github.com/neovim/neovim.git
synced 2026-01-24 06:05:37 +10:00
14 lines
320 B
C
14 lines
320 B
C
#ifndef NEOVIM_DIGRAPH_H
|
|
#define NEOVIM_DIGRAPH_H
|
|
|
|
int do_digraph(int c);
|
|
int get_digraph(int cmdline);
|
|
int getdigraph(int char1, int char2, int meta_char);
|
|
void putdigraph(char_u *str);
|
|
void listdigraphs(void);
|
|
char_u *keymap_init(void);
|
|
void ex_loadkeymap(exarg_T *eap);
|
|
|
|
// vim: set ft=c:
|
|
#endif // NEOVIM_DIGRAPH_H
|