diff options
author | Thiago de Arruda <tpadilha84@gmail.com> | 2014-12-08 22:24:00 -0300 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-12-08 23:44:24 -0300 |
commit | 86542c6fd0677a712c6b87049a04d8e67cda3e3d (patch) | |
tree | cd4e00ca6450acdb978936305fac40108543d201 /src/nvim/syntax.h | |
parent | 07e569a25dba4bf6d9743102a34666964efb45cb (diff) | |
download | rneovim-86542c6fd0677a712c6b87049a04d8e67cda3e3d.tar.gz rneovim-86542c6fd0677a712c6b87049a04d8e67cda3e3d.tar.bz2 rneovim-86542c6fd0677a712c6b87049a04d8e67cda3e3d.zip |
syntax: Use RGB/GUI attribute information for "abstract_ui"
Instead of using classic cterm color numbers and attributes, treat "abstract_ui"
as a GUI: Pass rgb color numbers and gui attributes when the "highlight_set" UI
method is called. The terminal UI will have to translate RGB color information
to an appropriate color number, and the "term"/"cterm" :highlight keys will
eventually be deprecated.
Diffstat (limited to 'src/nvim/syntax.h')
-rw-r--r-- | src/nvim/syntax.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/nvim/syntax.h b/src/nvim/syntax.h index a03bd1e604..9a284c8a8d 100644 --- a/src/nvim/syntax.h +++ b/src/nvim/syntax.h @@ -5,8 +5,6 @@ #include "nvim/buffer_defs.h" -typedef int guicolor_T; - /* * Terminal highlighting attribute bits. * Attributes above HL_ALL are used for syntax highlighting. |