comparison src/proto/highlight.pro @ 26089:c544eacaf066 v8.2.3578

patch 8.2.3578: manipulating highlighting is complicated Commit: https://github.com/vim/vim/commit/d1a8d658e1b16cf8579fc72cf7aa6a29a57ff5ef Author: Yegappan Lakshmanan <yegappan@yahoo.com> Date: Wed Nov 3 21:56:45 2021 +0000 patch 8.2.3578: manipulating highlighting is complicated Problem: Manipulating highlighting is complicated. Solution: Add the hlget() and hlset() functions. (Yegappan Lakshmanan, closes #9039)
author Bram Moolenaar <Bram@vim.org>
date Wed, 03 Nov 2021 23:00:08 +0100
parents 92c424550367
children bb87ce13e7d6
comparison
equal deleted inserted replaced
26088:37d400a117f7 26089:c544eacaf066
47 int highlight_changed(void); 47 int highlight_changed(void);
48 void set_context_in_highlight_cmd(expand_T *xp, char_u *arg); 48 void set_context_in_highlight_cmd(expand_T *xp, char_u *arg);
49 char_u *get_highlight_name(expand_T *xp, int idx); 49 char_u *get_highlight_name(expand_T *xp, int idx);
50 char_u *get_highlight_name_ext(expand_T *xp, int idx, int skip_cleared); 50 char_u *get_highlight_name_ext(expand_T *xp, int idx, int skip_cleared);
51 void free_highlight_fonts(void); 51 void free_highlight_fonts(void);
52 void f_hlget(typval_T *argvars, typval_T *rettv);
53 void f_hlset(typval_T *argvars, typval_T *rettv);
52 /* vim: set ft=c : */ 54 /* vim: set ft=c : */