comparison src/proto/term.pro @ 20836:2616c5a337e0 v8.2.0970

patch 8.2.0970: terminal properties are not available in Vim script Commit: https://github.com/vim/vim/commit/0c0eddd3ddd266bcc2036362fae7b2b8b9d2c7bf Author: Bram Moolenaar <Bram@vim.org> Date: Sat Jun 13 15:47:25 2020 +0200 patch 8.2.0970: terminal properties are not available in Vim script Problem: Terminal properties are not available in Vim script. Solution: Add the terminalprops() function.
author Bram Moolenaar <Bram@vim.org>
date Sat, 13 Jun 2020 16:00:04 +0200
parents 1e2e81dbb958
children 9299d21d1d5d
comparison
equal deleted inserted replaced
20835:097884058719 20836:2616c5a337e0
1 /* term.c */ 1 /* term.c */
2 guicolor_T termgui_get_color(char_u *name); 2 guicolor_T termgui_get_color(char_u *name);
3 guicolor_T termgui_mch_get_rgb(guicolor_T color); 3 guicolor_T termgui_mch_get_rgb(guicolor_T color);
4 void init_term_props(int all);
5 void f_terminalprops(typval_T *argvars, typval_T *rettv);
4 void set_color_count(int nr); 6 void set_color_count(int nr);
5 int set_termname(char_u *term); 7 int set_termname(char_u *term);
6 void getlinecol(long *cp, long *rp); 8 void getlinecol(long *cp, long *rp);
7 int add_termcap_entry(char_u *name, int force); 9 int add_termcap_entry(char_u *name, int force);
8 int term_is_8bit(char_u *name); 10 int term_is_8bit(char_u *name);