comparison src/popupwin.c @ 17626:2ae30dac20d6 v8.1.1810

patch 8.1.1810: popup_getoptions() is missing an entry for "mapping" commit https://github.com/vim/vim/commit/b8350abef0abbdca99bf08e821a8ba0ade37abed Author: Bram Moolenaar <Bram@vim.org> Date: Sun Aug 4 17:59:49 2019 +0200 patch 8.1.1810: popup_getoptions() is missing an entry for "mapping" Problem: Popup_getoptions() is missing an entry for "mapping". Solution: Add the entry.
author Bram Moolenaar <Bram@vim.org>
date Sun, 04 Aug 2019 18:00:05 +0200
parents ff097edaae89
children 6e6a84993444
comparison
equal deleted inserted replaced
17625:a70d4629a922 17626:2ae30dac20d6
2317 dict_add_number(dict, "zindex", wp->w_zindex); 2317 dict_add_number(dict, "zindex", wp->w_zindex);
2318 dict_add_number(dict, "fixed", wp->w_popup_fixed); 2318 dict_add_number(dict, "fixed", wp->w_popup_fixed);
2319 dict_add_string(dict, "title", wp->w_popup_title); 2319 dict_add_string(dict, "title", wp->w_popup_title);
2320 dict_add_number(dict, "wrap", wp->w_p_wrap); 2320 dict_add_number(dict, "wrap", wp->w_p_wrap);
2321 dict_add_number(dict, "drag", (wp->w_popup_flags & POPF_DRAG) != 0); 2321 dict_add_number(dict, "drag", (wp->w_popup_flags & POPF_DRAG) != 0);
2322 dict_add_number(dict, "mapping", (wp->w_popup_flags & POPF_MAPPING) != 0);
2322 dict_add_number(dict, "resize", (wp->w_popup_flags & POPF_RESIZE) != 0); 2323 dict_add_number(dict, "resize", (wp->w_popup_flags & POPF_RESIZE) != 0);
2323 dict_add_number(dict, "cursorline", 2324 dict_add_number(dict, "cursorline",
2324 (wp->w_popup_flags & POPF_CURSORLINE) != 0); 2325 (wp->w_popup_flags & POPF_CURSORLINE) != 0);
2325 dict_add_string(dict, "highlight", wp->w_p_wcr); 2326 dict_add_string(dict, "highlight", wp->w_p_wcr);
2326 if (wp->w_scrollbar_highlight != NULL) 2327 if (wp->w_scrollbar_highlight != NULL)