diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2018-11-26 01:26:07 +0100 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2018-11-27 01:14:55 +0100 |
commit | a2d03d9b1acc922e6fe1d7a9bae14027271ae7a6 (patch) | |
tree | 211ccd96a2f7e4edfcb6705a487b0c6003c84339 /src/nvim/highlight.c | |
parent | 271c5df41603f5427540082a3f8790bca0fd7595 (diff) | |
download | rneovim-a2d03d9b1acc922e6fe1d7a9bae14027271ae7a6.tar.gz rneovim-a2d03d9b1acc922e6fe1d7a9bae14027271ae7a6.tar.bz2 rneovim-a2d03d9b1acc922e6fe1d7a9bae14027271ae7a6.zip |
refactor: Rename get_term_attr_entry
Rename get_term_attr_entry to hl_get_term_attr, similar to
hl_get_syn_attr, hl_get_ui_attr.
Diffstat (limited to 'src/nvim/highlight.c')
-rw-r--r-- | src/nvim/highlight.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/highlight.c b/src/nvim/highlight.c index a104137d9e..ae2b90d8a1 100644 --- a/src/nvim/highlight.c +++ b/src/nvim/highlight.c @@ -178,7 +178,7 @@ void update_window_hl(win_T *wp, bool invalid) } /// Get attribute code for forwarded :terminal highlights. -int get_term_attr_entry(HlAttrs *aep) +int hl_get_term_attr(HlAttrs *aep) { return get_attr_entry((HlEntry){ .attr= *aep, .kind = kHlTerminal, .id1 = 0, .id2 = 0 }); |