annotate src/proto/popupmnu.pro @ 6876:4ece46045a5a
v7.4.758
patch 7.4.758
Problem: When 'conceallevel' is 1 and quitting the command-line window with
CTRL-C the first character ':' is erased.
Solution: Reset 'conceallevel' in the command-line window. (Hirohito
Higashi)
author |
Bram Moolenaar <bram@vim.org> |
date |
Thu, 25 Jun 2015 18:20:36 +0200 |
parents |
e63691e7c504 |
children |
21b0a39d13ed |
rev |
line source |
799
|
1 /* popupmnu.c */
|
1121
|
2 void pum_display __ARGS((pumitem_T *array, int size, int selected));
|
|
3 void pum_redraw __ARGS((void));
|
|
4 void pum_undisplay __ARGS((void));
|
|
5 void pum_clear __ARGS((void));
|
|
6 int pum_visible __ARGS((void));
|
|
7 int pum_get_height __ARGS((void));
|
799
|
8 /* vim: set ft=c : */
|