forked from aniani/vim
Problem: When 'ttymouse' is set to 'uxterm' the xterm version is not
requested. (Tomas Janousek)
Solution: Do not mark uxterm as a conflict mouse and add
resume_get_esc_sequence().
65 lines
2.7 KiB
C
65 lines
2.7 KiB
C
/* term.c */
|
|
int set_termname __ARGS((char_u *term));
|
|
void set_mouse_termcode __ARGS((int n, char_u *s));
|
|
void del_mouse_termcode __ARGS((int n));
|
|
void getlinecol __ARGS((long *cp, long *rp));
|
|
int add_termcap_entry __ARGS((char_u *name, int force));
|
|
int term_is_8bit __ARGS((char_u *name));
|
|
int term_is_gui __ARGS((char_u *name));
|
|
char_u *tltoa __ARGS((unsigned long i));
|
|
void termcapinit __ARGS((char_u *name));
|
|
void out_flush __ARGS((void));
|
|
void out_flush_check __ARGS((void));
|
|
void out_trash __ARGS((void));
|
|
void out_char __ARGS((unsigned c));
|
|
void out_str_nf __ARGS((char_u *s));
|
|
void out_str __ARGS((char_u *s));
|
|
void term_windgoto __ARGS((int row, int col));
|
|
void term_cursor_right __ARGS((int i));
|
|
void term_append_lines __ARGS((int line_count));
|
|
void term_delete_lines __ARGS((int line_count));
|
|
void term_set_winpos __ARGS((int x, int y));
|
|
void term_set_winsize __ARGS((int width, int height));
|
|
void term_fg_color __ARGS((int n));
|
|
void term_bg_color __ARGS((int n));
|
|
void term_settitle __ARGS((char_u *title));
|
|
void ttest __ARGS((int pairs));
|
|
void add_long_to_buf __ARGS((long_u val, char_u *dst));
|
|
void check_shellsize __ARGS((void));
|
|
void limit_screen_size __ARGS((void));
|
|
void win_new_shellsize __ARGS((void));
|
|
void shell_resized __ARGS((void));
|
|
void shell_resized_check __ARGS((void));
|
|
void set_shellsize __ARGS((int width, int height, int mustset));
|
|
void settmode __ARGS((int tmode));
|
|
void starttermcap __ARGS((void));
|
|
void stoptermcap __ARGS((void));
|
|
int did_request_esc_sequence __ARGS((void));
|
|
void resume_get_esc_sequence __ARGS((void));
|
|
void may_req_termresponse __ARGS((void));
|
|
void may_req_ambiguous_char_width __ARGS((void));
|
|
int swapping_screen __ARGS((void));
|
|
void setmouse __ARGS((void));
|
|
int mouse_has __ARGS((int c));
|
|
int mouse_model_popup __ARGS((void));
|
|
void scroll_start __ARGS((void));
|
|
void cursor_on __ARGS((void));
|
|
void cursor_off __ARGS((void));
|
|
void term_cursor_shape __ARGS((void));
|
|
void scroll_region_set __ARGS((win_T *wp, int off));
|
|
void scroll_region_reset __ARGS((void));
|
|
void clear_termcodes __ARGS((void));
|
|
void add_termcode __ARGS((char_u *name, char_u *string, int flags));
|
|
char_u *find_termcode __ARGS((char_u *name));
|
|
char_u *get_termcode __ARGS((int i));
|
|
void del_termcode __ARGS((char_u *name));
|
|
void set_mouse_topline __ARGS((win_T *wp));
|
|
int check_termcode __ARGS((int max_offset, char_u *buf, int bufsize, int *buflen));
|
|
char_u *replace_termcodes __ARGS((char_u *from, char_u **bufp, int from_part, int do_lt, int special));
|
|
int find_term_bykeys __ARGS((char_u *src));
|
|
void show_termcodes __ARGS((void));
|
|
int show_one_termcode __ARGS((char_u *name, char_u *code, int printit));
|
|
char_u *translate_mapping __ARGS((char_u *str, int expmap));
|
|
void update_tcap __ARGS((int attr));
|
|
/* vim: set ft=c : */
|