summaryrefslogtreecommitdiffstats
path: root/src/gui.h
AgeCommit message (Collapse)Author
2020-12-30patch 8.2.2247: VMS: various smaller problemsv8.2.2247Bram Moolenaar
Problem: VMS: various smaller problems. Solution: Fix VMS building and other problems. (Zoltan Arpadffy)
2020-08-11patch 8.2.1422: the Mac GUI implementation is outdatedv8.2.1422Bram Moolenaar
Problem: The Mac GUI implementation is outdated and probably doesn't even work. Solution: Remove the Mac GUI code. The MacVim project provides the supported Vim GUI version.
2020-02-26patch 8.2.0320: no Haiku supportv8.2.0320Bram Moolenaar
Problem: No Haiku support. Solution: Add support for Haiku. (Emir Sari, closes #5605)
2019-11-30patch 8.1.2366: using old C style commentsv8.1.2366Bram Moolenaar
Problem: Using old C style comments. Solution: Use // comments where appropriate.
2019-07-04patch 8.1.1633: cannot generate prototypes with X11 but without GUIv8.1.1633Bram Moolenaar
Problem: Cannot generate prototypes with X11 but without GUI. Solution: Include X11/Intrinsic.h.
2019-04-28patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exev8.1.1230Bram Moolenaar
Problem: A lot of code is shared between vim.exe and gvim.exe. Solution: Optionally put the shared code in vim.dll. (Ken Takata, closes #4287)
2019-02-17patch 8.1.0941: macros for MS-Windows are inconsistentv8.1.0941Bram Moolenaar
Problem: Macros for MS-Windows are inconsistent, using "32", "3264 and others. Solution: Use MSWIN for all MS-Windows builds. Use FEAT_GUI_MSWIN for the GUI build. (Hirohito Higashi, closes #3932)
2019-01-24patch 8.1.0810: too many #ifdefsv8.1.0810Bram Moolenaar
Problem: Too many #ifdefs. Solution: Graduate FEAT_MBYTE, part 4.
2018-07-29patch 8.1.0228: dropping files is ignored while Vim is busyv8.1.0228Bram Moolenaar
Problem: Dropping files is ignored while Vim is busy. Solution: Postpone the effect of dropping files until it's safe.
2018-05-05patch 8.0.1795: lose contact with jobs when :gui forksv8.0.1795Bram Moolenaar
Problem: Lose contact with jobs when :gui forks. Solution: Don't fork when there is a running job. Make log message for a died job clearer. Also close the terminal when stderr and stdout are the same FD.
2018-02-27patch 8.0.1544: when using 'termguicolors' SpellBad doesn't showv8.0.1544Bram Moolenaar
Problem: When using 'termguicolors' SpellBad doesn't show. Solution: When the GUI colors are not set fall back to the cterm colors.
2017-11-18patch 8.0.1312: balloon_show() only works in terminal when compiled with GUIv8.0.1312Bram Moolenaar
Problem: balloon_show() only works in terminal when compiled with the GUI. Solution: Add FEAT_BEVAL_GUI and refactor to move common code out of the GUI specific file.
2017-09-16patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefsv8.0.1118Bram Moolenaar
Problem: FEAT_WINDOWS adds a lot of #ifdefs while it is nearly always enabled and only adds 7% to the binary size of the tiny build. Solution: Graduate FEAT_WINDOWS.
2017-09-02patch 8.0.1038: strike-through text not supportedv8.0.1038Bram Moolenaar
Problem: Strike-through text not supported. Solution: Add support for the "strikethrough" attribute. (Christian Brabandt, Ken Takata)
2016-09-09patch 7.4.2358v7.4.2358Bram Moolenaar
Problem: Compiler warnings with Solaris Studio when using GTK3. Solution: Define FUNC2GENERIC depending on the system. (Kazunobu Kuriyama)
2016-08-29patch 7.4.2293v7.4.2293Bram Moolenaar
Problem: Modelines in source code are inconsistant. Solution: Use the same line in most files. Add 'noet'. (Naruhiko Nishino)
2016-08-10patch 7.4.2192v7.4.2192Bram Moolenaar
Problem: Generating prototypes with Cygwin doesn't work well. Solution: Change #ifdefs. (Ken Takata)
2016-07-21patch 7.4.2089v7.4.2089Bram Moolenaar
Problem: Color handling of X11 GUIs is too complicated. Solution: Simplify the code. Use RGBA where appropriate. (Kazunobu Kuriyama)
2016-03-19patch 7.4.1611v7.4.1611Bram Moolenaar
Problem: The versplit feature makes the code uneccessary complicated. Solution: Remove FEAT_VERTSPLIT, always support vertical splits when FEAT_WINDOWS is defined.
2016-02-23patch 7.4.1402v7.4.1402Bram Moolenaar
Problem: GTK 3 is not supported. Solution: Add GTK 3 support. (Kazunobu Kuriyama)
2016-02-20patch 7.4.1375v7.4.1375Bram Moolenaar
Problem: Still some Win16 code. Solution: Remove FEAT_GUI_W16.(Hirohito Higashi)
2014-12-17updated for version 7.4.553v7.4.553Bram Moolenaar
Problem: Various small issues. Solution: Fix those issues.
2013-06-17updated for version 7.3.1220v7.3.1220Bram Moolenaar
Problem: MS-Windows: When using wide font italic and bold are not included. Solution: Support wide-bold, wide-italic and wide-bold-italic. (Ken Takata, Taro Muraoka)
2013-01-23updated for version 7.3.774v7.3.774Bram Moolenaar
Problem: Tiny GUI version misses console dialog feature. Solution: Define FEAT_CON_DIALOG when apprpriate. (Christian Brabandt)
2011-06-26updated for version 7.3.234v7.3.234Bram Moolenaar
Problem: With GTK menu may be popping down. Solution: Use event time instead of GDK_CURRENT_TIME. (Hong Xu)
2011-05-10updated for version 7.3.187v7.3.187Bram Moolenaar
Problem: The RISC OS port has obvious errors and is not being maintained. Solution: Remove the RISC OS files and code.
2010-07-17Whitespace cleanup.Bram Moolenaar
2010-06-26Change remaining HAVE_GTK2 to FEAT_GUI_GTK.Bram Moolenaar
2010-06-25Remove the old and not well supported GTK 1 code. (James Vega)Bram Moolenaar
2008-06-24updated for version 7.2aBram Moolenaar
2007-06-19updated for version 7.1-007v7.1.007Bram Moolenaar
2007-05-10updated for version 7.1bBram Moolenaar
2007-05-06updated for version 7.1aBram Moolenaar
2007-04-26updated for version 7.0-232v7.0.232Bram Moolenaar
2006-04-27updated for version 7.0f02v7.0f02Bram Moolenaar
2006-04-25updated for version 7.0f01v7.0f01Bram Moolenaar
2006-04-18updated for version 7.0e02v7.0e02Bram Moolenaar
2006-04-05updated for version 7.0c10v7.0c10Bram Moolenaar
2006-03-27updated for version 7.0c01Bram Moolenaar
2006-03-27updated for version 7.0cv7.0cBram Moolenaar
2006-03-06updated for version 7.0216v7.0216Bram Moolenaar
2006-02-27updated for version 7.0208Bram Moolenaar
2006-02-24updated for version 7.0206v7.0206Bram Moolenaar
2006-02-14updated for version 7.0197v7.0197Bram Moolenaar
2005-12-06updated for version 7.0163Bram Moolenaar
2005-07-25updated for version 7.0116Bram Moolenaar
2005-06-30updated for version 7.0098Bram Moolenaar
2005-06-14updated for version 7.0085Bram Moolenaar
2005-03-15updated for version 7.0060Bram Moolenaar
2005-01-04updated for version 7.0030Bram Moolenaar