comparison src/proto/os_win32.pro @ 13314:65c3e8259124 v8.0.1531

patch 8.0.1531: cannot use 24 bit colors in MS-Windows console commit https://github.com/vim/vim/commit/cafafb381a04e33f3ce9cd15dd9f94b73226831f Author: Bram Moolenaar <Bram@vim.org> Date: Thu Feb 22 21:07:09 2018 +0100 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console Problem: Cannot use 24 bit colors in MS-Windows console. Solution: Add support for vcon. (Nobuhiro Takasaki, Ken Takasaki, fixes #1270, fixes #2060)
author Christian Brabandt <cb@256bit.org>
date Thu, 22 Feb 2018 21:15:05 +0100
parents 32531a3eab1f
children e534e8b21fd7
comparison
equal deleted inserted replaced
13313:97fb19f36653 13314:65c3e8259124
40 int mch_get_shellsize(void); 40 int mch_get_shellsize(void);
41 void mch_set_shellsize(void); 41 void mch_set_shellsize(void);
42 void mch_new_shellsize(void); 42 void mch_new_shellsize(void);
43 void mch_set_winsize_now(void); 43 void mch_set_winsize_now(void);
44 int mch_call_shell(char_u *cmd, int options); 44 int mch_call_shell(char_u *cmd, int options);
45 void win32_build_env(dict_T *env, garray_T *gap, int is_terminal);
45 void mch_job_start(char *cmd, job_T *job, jobopt_T *options); 46 void mch_job_start(char *cmd, job_T *job, jobopt_T *options);
46 char *mch_job_status(job_T *job); 47 char *mch_job_status(job_T *job);
47 job_T *mch_detect_ended_job(job_T *job_list); 48 job_T *mch_detect_ended_job(job_T *job_list);
48 int mch_signal_job(job_T *job, char_u *how); 49 int mch_signal_job(job_T *job, char_u *how);
49 void mch_clear_job(job_T *job); 50 void mch_clear_job(job_T *job);
65 void free_cmd_argsW(void); 66 void free_cmd_argsW(void);
66 void used_file_arg(char *name, int literal, int full_path, int diff_mode); 67 void used_file_arg(char *name, int literal, int full_path, int diff_mode);
67 void set_alist_count(void); 68 void set_alist_count(void);
68 void fix_arg_enc(void); 69 void fix_arg_enc(void);
69 int mch_setenv(char *var, char *value, int x); 70 int mch_setenv(char *var, char *value, int x);
70 void win32_build_env(dict_T *l, garray_T *gap, int is_terminal); 71 void control_console_color_rgb(void);
72 int has_vtp_working(void);
73 int use_vtp(void);
71 /* vim: set ft=c : */ 74 /* vim: set ft=c : */