diff options
author | Eliseo Martínez <eliseomarmol@gmail.com> | 2014-05-12 02:25:17 +0200 |
---|---|---|
committer | Eliseo Martínez <eliseomarmol@gmail.com> | 2014-05-15 20:46:01 +0200 |
commit | da51dc9cf202772f60bd2da975dbef257bd9237c (patch) | |
tree | 5c16b93238a153f55634e9323077f30c8133970c /src/ui.h | |
parent | ffe61e5ba1721340ca51d56bae3ddaca415fb5bc (diff) | |
download | rneovim-da51dc9cf202772f60bd2da975dbef257bd9237c.tar.gz rneovim-da51dc9cf202772f60bd2da975dbef257bd9237c.tar.bz2 rneovim-da51dc9cf202772f60bd2da975dbef257bd9237c.zip |
Introduce nvim namespace: Move files.
Move files from src/ to src/nvim/.
- src/nvim/ becomes the new root dir for nvim executable sources.
- src/libnvim/ is planned to become root dir of the neovim library.
Diffstat (limited to 'src/ui.h')
-rw-r--r-- | src/ui.h | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/src/ui.h b/src/ui.h deleted file mode 100644 index aed242c262..0000000000 --- a/src/ui.h +++ /dev/null @@ -1,29 +0,0 @@ -#ifndef NEOVIM_UI_H -#define NEOVIM_UI_H -/* ui.c */ -void ui_write(char_u *s, int len); -int ui_inchar(char_u *buf, int maxlen, long wtime, int tb_change_cnt); -int ui_char_avail(void); -void ui_delay(long msec, int ignoreinput); -void ui_suspend(void); -int ui_get_shellsize(void); -void ui_set_shellsize(int mustset); -void ui_breakcheck(void); -int vim_is_input_buf_full(void); -int vim_is_input_buf_empty(void); -char_u *get_input_buf(void); -void set_input_buf(char_u *p); -void add_to_input_buf(char_u *s, int len); -void add_to_input_buf_csi(char_u *str, int len); -void trash_input_buf(void); -int read_from_input_buf(char_u *buf, long maxlen); -void fill_input_buf(int exit_on_error); -void read_error_exit(void); -void ui_cursor_shape(void); -int check_col(int col); -int check_row(int row); -int jump_to_mouse(int flags, int *inclusive, int which_button); -int mouse_comp_pos(win_T *win, int *rowp, int *colp, linenr_T *lnump); -win_T *mouse_find_win(int *rowp, int *colp); -void im_save_status(long *psave); -#endif /* NEOVIM_UI_H */ |