Mercurial > vim
annotate src/proto/gui_beval.pro @ 24681:1077a2762d06 v8.2.2879
patch 8.2.2879: file extension .hsig not recognized
Commit: https://github.com/vim/vim/commit/f5409dbf66f4e4a0461d3f2079c1bffacbf12392
Author: Marcin Szamotulski <profunctor@pm.me>
Date: Sun May 23 11:18:50 2021 +0200
patch 8.2.2879: file extension .hsig not recognized
Problem: File extension .hsig not recognized.
Solution: Use Haskell filetype for .hsig files. (Marcin Szamotulski,
closes #8236)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sun, 23 May 2021 11:30:03 +0200 |
parents | 1a450ce6980c |
children |
rev | line source |
---|---|
7 | 1 /* gui_beval.c */ |
7668
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
1125
diff
changeset
|
2 BalloonEval *gui_mch_create_beval_area(void *target, char_u *mesg, void (*mesgCB)(BalloonEval *, int), void *clientData); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
1125
diff
changeset
|
3 void gui_mch_destroy_beval_area(BalloonEval *beval); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
1125
diff
changeset
|
4 void gui_mch_enable_beval_area(BalloonEval *beval); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
1125
diff
changeset
|
5 void gui_mch_disable_beval_area(BalloonEval *beval); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
1125
diff
changeset
|
6 BalloonEval *gui_mch_currently_showing_beval(void); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
1125
diff
changeset
|
7 void gui_mch_post_balloon(BalloonEval *beval, char_u *mesg); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
1125
diff
changeset
|
8 void gui_mch_unpost_balloon(BalloonEval *beval); |
7 | 9 /* vim: set ft=c : */ |