diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-04-29 22:59:22 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-04-29 22:59:22 +0200 |
commit | 61be73bb0f965a895bfb064ea3e55476ac175162 (patch) | |
tree | 1e8383f05effc05a320c2e803ff6f2b431c2507c /src/proto/term.pro | |
parent | bb82762907ba024717ad9af3b229c2fa6405cd36 (diff) | |
download | vim-git-61be73bb0f965a895bfb064ea3e55476ac175162.tar.gz |
patch 7.4.1799v7.4.1799
Problem: 'guicolors' is a confusing option name.
Solution: Use 'termguicolors' instead. (Hirohito Higashi)
Diffstat (limited to 'src/proto/term.pro')
-rw-r--r-- | src/proto/term.pro | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/proto/term.pro b/src/proto/term.pro index 398451544..93c6cb09b 100644 --- a/src/proto/term.pro +++ b/src/proto/term.pro @@ -1,7 +1,7 @@ /* term.c */ -guicolor_T termtrue_mch_get_color(char_u *name); -guicolor_T termtrue_get_color(char_u *name); -long_u termtrue_mch_get_rgb(guicolor_T color); +guicolor_T termgui_mch_get_color(char_u *name); +guicolor_T termgui_get_color(char_u *name); +long_u termgui_mch_get_rgb(guicolor_T color); int set_termname(char_u *term); void set_mouse_termcode(int n, char_u *s); void del_mouse_termcode(int n); |