comparison src/proto/ui.pro @ 24194:9f64c420f280 v8.2.2638

patch 8.2.2638: cannot write a message to the terminal from the GUI Commit: https://github.com/vim/vim/commit/4c86830fc578bcb47a51cf0983da5388cdbfe6cc Author: Bram Moolenaar <Bram@vim.org> Date: Mon Mar 22 16:19:45 2021 +0100 patch 8.2.2638: cannot write a message to the terminal from the GUI Problem: Cannot write a message to the terminal from the GUI. Solution: Add :echoconsole and use it in the test runner. (issue https://github.com/vim/vim/issues/7975)
author Bram Moolenaar <Bram@vim.org>
date Mon, 22 Mar 2021 16:30:04 +0100
parents 00a1b89256ea
children fdc6a7769045
comparison
equal deleted inserted replaced
24193:a926732fe169 24194:9f64c420f280
1 /* ui.c */ 1 /* ui.c */
2 void ui_write(char_u *s, int len); 2 void ui_write(char_u *s, int len, int console);
3 void ui_inchar_undo(char_u *s, int len); 3 void ui_inchar_undo(char_u *s, int len);
4 int ui_inchar(char_u *buf, int maxlen, long wtime, int tb_change_cnt); 4 int ui_inchar(char_u *buf, int maxlen, long wtime, int tb_change_cnt);
5 int inchar_loop(char_u *buf, int maxlen, long wtime, int tb_change_cnt, int (*wait_func)(long wtime, int *interrupted, int ignore_input), int (*resize_func)(int check_only)); 5 int inchar_loop(char_u *buf, int maxlen, long wtime, int tb_change_cnt, int (*wait_func)(long wtime, int *interrupted, int ignore_input), int (*resize_func)(int check_only));
6 int ui_wait_for_chars_or_timer(long wtime, int (*wait_func)(long wtime, int *interrupted, int ignore_input), int *interrupted, int ignore_input); 6 int ui_wait_for_chars_or_timer(long wtime, int (*wait_func)(long wtime, int *interrupted, int ignore_input), int *interrupted, int ignore_input);
7 int ui_char_avail(void); 7 int ui_char_avail(void);
8 void ui_delay(long msec, int ignoreinput); 8 void ui_delay(long msec_arg, int ignoreinput);
9 void ui_suspend(void); 9 void ui_suspend(void);
10 void suspend_shell(void); 10 void suspend_shell(void);
11 int ui_get_shellsize(void); 11 int ui_get_shellsize(void);
12 void ui_set_shellsize(int mustset); 12 void ui_set_shellsize(int mustset);
13 void ui_new_shellsize(void); 13 void ui_new_shellsize(void);