diff options
author | zeertzjq <zeertzjq@outlook.com> | 2024-07-27 22:12:30 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-27 22:12:30 +0800 |
commit | aee4254b76206354d74d6fdd4d8e6b640279cedd (patch) | |
tree | 202e727d028ad66adc9b78705cd04a1a31dc7695 /src | |
parent | 6162c937abbf80195ccab3daeb7ecdeb6ab24b52 (diff) | |
parent | b8b0e9db3f91fbaa8835b90c683c33310064c8c8 (diff) | |
download | rneovim-aee4254b76206354d74d6fdd4d8e6b640279cedd.tar.gz rneovim-aee4254b76206354d74d6fdd4d8e6b640279cedd.tar.bz2 rneovim-aee4254b76206354d74d6fdd4d8e6b640279cedd.zip |
Merge pull request #29876 from glepnir/vim-patch
vim-patch:9.1.{0618,0619,0629}: cannot mark deprecated attributes in completion menu
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/cmdexpand.c | 1 | ||||
-rw-r--r-- | src/nvim/insexpand.c | 24 | ||||
-rw-r--r-- | src/nvim/popupmenu.c | 12 | ||||
-rw-r--r-- | src/nvim/popupmenu.h | 13 |
4 files changed, 35 insertions, 15 deletions
diff --git a/src/nvim/cmdexpand.c b/src/nvim/cmdexpand.c index e544ea14ea..e1a282cb0b 100644 --- a/src/nvim/cmdexpand.c +++ b/src/nvim/cmdexpand.c @@ -356,6 +356,7 @@ static int cmdline_pum_create(CmdlineInfo *ccline, expand_T *xp, char **matches, .pum_info = NULL, .pum_extra = NULL, .pum_kind = NULL, + .pum_user_hlattr = -1, }; } diff --git a/src/nvim/insexpand.c b/src/nvim/insexpand.c index 46114b2973..d9cc398e45 100644 --- a/src/nvim/insexpand.c +++ b/src/nvim/insexpand.c @@ -39,6 +39,7 @@ #include "nvim/globals.h" #include "nvim/highlight.h" #include "nvim/highlight_defs.h" +#include "nvim/highlight_group.h" #include "nvim/indent.h" #include "nvim/indent_c.h" #include "nvim/insexpand.h" @@ -170,6 +171,7 @@ struct compl_S { int cp_flags; ///< CP_ values int cp_number; ///< sequence number int cp_score; ///< fuzzy match score + int cp_user_hlattr; ///< highlight attribute to combine with }; /// state information used for getting the next set of insert completion @@ -762,7 +764,7 @@ int ins_compl_add_infercase(char *str_arg, int len, bool icase, char *fname, Dir flags |= CP_ICASE; } - int res = ins_compl_add(str, len, fname, NULL, false, NULL, dir, flags, false); + int res = ins_compl_add(str, len, fname, NULL, false, NULL, dir, flags, false, -1); xfree(tofree); return res; } @@ -802,7 +804,7 @@ static inline void free_cptext(char *const *const cptext) /// returned in case of error. static int ins_compl_add(char *const str, int len, char *const fname, char *const *const cptext, const bool cptext_allocated, typval_T *user_data, const Direction cdir, - int flags_arg, const bool adup) + int flags_arg, const bool adup, int user_hlattr) FUNC_ATTR_NONNULL_ARG(1) { compl_T *match; @@ -868,6 +870,7 @@ static int ins_compl_add(char *const str, int len, char *const fname, char *cons match->cp_fname = NULL; } match->cp_flags = flags; + match->cp_user_hlattr = user_hlattr; if (cptext != NULL) { int i; @@ -1001,7 +1004,7 @@ static void ins_compl_add_matches(int num_matches, char **matches, int icase) for (int i = 0; i < num_matches && add_r != FAIL; i++) { if ((add_r = ins_compl_add(matches[i], -1, NULL, NULL, false, NULL, dir, CP_FAST | (icase ? CP_ICASE : 0), - false)) == OK) { + false, -1)) == OK) { // If dir was BACKWARD then honor it just once. dir = FORWARD; } @@ -1268,6 +1271,7 @@ static int ins_compl_build_pum(void) compl_match_array[i].pum_kind = comp->cp_text[CPT_KIND]; compl_match_array[i].pum_info = comp->cp_text[CPT_INFO]; compl_match_array[i].pum_score = comp->cp_score; + compl_match_array[i].pum_user_hlattr = comp->cp_user_hlattr; if (comp->cp_text[CPT_MENU] != NULL) { compl_match_array[i++].pum_extra = comp->cp_text[CPT_MENU]; } else { @@ -2552,6 +2556,8 @@ static int ins_compl_add_tv(typval_T *const tv, const Direction dir, bool fast) bool empty = false; int flags = fast ? CP_FAST : 0; char *(cptext[CPT_COUNT]); + char *user_hlname = NULL; + int user_hlattr = -1; typval_T user_data; user_data.v_type = VAR_UNKNOWN; @@ -2561,6 +2567,10 @@ static int ins_compl_add_tv(typval_T *const tv, const Direction dir, bool fast) cptext[CPT_MENU] = tv_dict_get_string(tv->vval.v_dict, "menu", true); cptext[CPT_KIND] = tv_dict_get_string(tv->vval.v_dict, "kind", true); cptext[CPT_INFO] = tv_dict_get_string(tv->vval.v_dict, "info", true); + user_hlname = tv_dict_get_string(tv->vval.v_dict, "hl_group", false); + if (user_hlname != NULL && *user_hlname != NUL) { + user_hlattr = syn_name2attr(user_hlname); + } tv_dict_get_tv(tv->vval.v_dict, "user_data", &user_data); if (tv_dict_get_number(tv->vval.v_dict, "icase")) { @@ -2582,7 +2592,7 @@ static int ins_compl_add_tv(typval_T *const tv, const Direction dir, bool fast) return FAIL; } int status = ins_compl_add((char *)word, -1, NULL, cptext, true, - &user_data, dir, flags, dup); + &user_data, dir, flags, dup, user_hlattr); if (status != OK) { tv_clear(&user_data); } @@ -2675,7 +2685,7 @@ static void set_completion(colnr_T startcol, list_T *list) flags |= CP_ICASE; } if (ins_compl_add(compl_orig_text, -1, NULL, NULL, false, NULL, 0, - flags | CP_FAST, false) != OK) { + flags | CP_FAST, false, -1) != OK) { return; } @@ -3420,7 +3430,7 @@ static void get_next_bufname_token(void) char *tail = path_tail(b->b_sfname); if (strncmp(tail, compl_orig_text, strlen(compl_orig_text)) == 0) { ins_compl_add(tail, (int)strlen(tail), NULL, NULL, false, NULL, 0, - p_ic ? CP_ICASE : 0, false); + p_ic ? CP_ICASE : 0, false, -1); } } } @@ -4458,7 +4468,7 @@ static int ins_compl_start(void) flags |= CP_ICASE; } if (ins_compl_add(compl_orig_text, -1, NULL, NULL, false, NULL, 0, - flags, false) != OK) { + flags, false, -1) != OK) { XFREE_CLEAR(compl_pattern); compl_patternlen = 0; XFREE_CLEAR(compl_orig_text); diff --git a/src/nvim/popupmenu.c b/src/nvim/popupmenu.c index 64db351dfa..a259fbf09b 100644 --- a/src/nvim/popupmenu.c +++ b/src/nvim/popupmenu.c @@ -440,7 +440,7 @@ void pum_display(pumitem_T *array, int size, int selected, bool array_changed, i /// Computes attributes of text on the popup menu. /// Returns attributes for every cell, or NULL if all attributes are the same. -static int *pum_compute_text_attrs(char *text, hlf_T hlf) +static int *pum_compute_text_attrs(char *text, hlf_T hlf, int user_hlattr) { if ((hlf != HLF_PSI && hlf != HLF_PNI) || (win_hl_attr(curwin, HLF_PMSI) == win_hl_attr(curwin, HLF_PSI) @@ -487,6 +487,10 @@ static int *pum_compute_text_attrs(char *text, hlf_T hlf) new_attr = win_hl_attr(curwin, hlf == HLF_PSI ? HLF_PMSI : HLF_PMNI); } + if (user_hlattr > 0) { + new_attr = hl_combine_attr(new_attr, user_hlattr); + } + int char_cells = utf_ptr2cells(ptr); for (int i = 0; i < char_cells; i++) { attrs[cell_idx + i] = new_attr; @@ -627,6 +631,9 @@ void pum_redraw(void) for (int round = 0; round < 3; round++) { hlf = hlfs[round]; attr = win_hl_attr(curwin, (int)hlf); + if (pum_array[idx].pum_user_hlattr > 0) { + attr = hl_combine_attr(attr, pum_array[idx].pum_user_hlattr); + } int width = 0; char *s = NULL; @@ -660,7 +667,8 @@ void pum_redraw(void) *p = saved; } - int *attrs = pum_compute_text_attrs(st, hlf); + int user_hlattr = pum_array[idx].pum_user_hlattr; + int *attrs = pum_compute_text_attrs(st, hlf, user_hlattr); if (pum_rl) { char *rt = reverse_text(st); diff --git a/src/nvim/popupmenu.h b/src/nvim/popupmenu.h index bcf2a14290..817e0ba0b1 100644 --- a/src/nvim/popupmenu.h +++ b/src/nvim/popupmenu.h @@ -10,12 +10,13 @@ /// Used for popup menu items. typedef struct { - char *pum_text; ///< main menu text - char *pum_kind; ///< extra kind text (may be truncated) - char *pum_extra; ///< extra menu text (may be truncated) - char *pum_info; ///< extra info - int pum_score; ///< fuzzy match score - int pum_idx; ///< index of item before sorting by score + char *pum_text; ///< main menu text + char *pum_kind; ///< extra kind text (may be truncated) + char *pum_extra; ///< extra menu text (may be truncated) + char *pum_info; ///< extra info + int pum_score; ///< fuzzy match score + int pum_idx; ///< index of item before sorting by score + int pum_user_hlattr; ///< highlight attribute to combine with } pumitem_T; EXTERN ScreenGrid pum_grid INIT( = SCREEN_GRID_INIT); |