diff options
author | Thiago de Arruda <tpadilha84@gmail.com> | 2014-03-07 08:15:33 -0300 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-03-07 09:23:59 -0300 |
commit | 998541eb043b3effe28a238dd583fe845ce1ba1d (patch) | |
tree | 0ef75b91e4602b169aae261879e7656959c1245d /src/hangulin.h | |
parent | 477031c03b2c525b117fae8a9b61c98245a06908 (diff) | |
download | rneovim-998541eb043b3effe28a238dd583fe845ce1ba1d.tar.gz rneovim-998541eb043b3effe28a238dd583fe845ce1ba1d.tar.bz2 rneovim-998541eb043b3effe28a238dd583fe845ce1ba1d.zip |
Remove hangul input support
Vim [documentation](http://vimdoc.sourceforge.net/htmldoc/hangulin.html), says
that hangul support is scheduled to be removed. I think it's safe to say we
don't want to support a feature even vim is considering removing.
Everything still compiles even after removing the header, so it's not being
used.
Before doing the initial import to neovim's repository, I had to tweak this
module to make it compile for terminal. It was a mistake that is now being
corrected.
Diffstat (limited to 'src/hangulin.h')
-rw-r--r-- | src/hangulin.h | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/src/hangulin.h b/src/hangulin.h deleted file mode 100644 index a6d24474c3..0000000000 --- a/src/hangulin.h +++ /dev/null @@ -1,12 +0,0 @@ -#ifndef NEOVIM_HANGULIN_H -#define NEOVIM_HANGULIN_H -/* hangulin.c */ -int hangul_input_state_get(void); -void hangul_input_state_set(int state); -int im_get_status(void); -void hangul_input_state_toggle(void); -void hangul_keyboard_set(void); -int hangul_input_process(char_u *s, int len); -void hangul_input_clear(void); -/* vim: set ft=c : */ -#endif /* NEOVIM_HANGULIN_H */ |