summaryrefslogtreecommitdiff
path: root/src/gui.c
AgeCommit message (Collapse)Author
2014-03-23updated for version 7.4.212Bram Moolenaar
Problem: Now that the +visual feature is always enabled the #ifdefs for it are not useful. Solution: Remove the checks for FEAT_VISUAL.
2013-06-30updated for version 7.3.1278Bram Moolenaar
Problem: When someone sets the screen size to a huge value with "stty" Vim runs out of memory before reducing the size. Solution: Limit Rows and Columns in more places.
2013-06-29updated for version 7.3.1266Bram Moolenaar
Problem: QNX: GUI fails to start. Solution: Remove the QNX-specific #ifdef. (Sean Boudreau)
2013-06-17updated for version 7.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-06-12updated for version 7.3.1178Bram Moolenaar
Problem: Can't put all Vim config files together in one directory. Solution: Load ~/.vim/vimrc if ~/.vimrc does not exist. (Lech Lorens)
2013-06-08updated for version 7.3.1149Bram Moolenaar
Problem: New regexp engine: Matching plain text could be faster. Solution: Detect a plain text match and handle it specifically. Add vim_regfree().
2013-05-06updated for version 7.3.925Bram Moolenaar
Problem: Typos in source files. Solution: Fix the typos. (Ken Takata)
2013-04-03updated for version 7.3.876Bram Moolenaar
Problem: #if indents are off. Solution: Insert a space where appropriate. (Taro Muraoka)
2013-01-23updated for version 7.3.782Bram Moolenaar
Problem: Windows: IME composition may use a wrong font. Solution: Use 'guifontwide' for IME when it is set. (Taro Muraoka)
2013-01-23updated for version 7.3.781Bram Moolenaar
Problem: Drawing with 'guifontwide' can be slow. Solution: Draw multiple characters at a time. (Taro Muraoka)
2012-11-20updated for version 7.3.717Bram Moolenaar
Problem: When changing the font size, only MS-Windows limits the window size. Solution: Also limit the window size on other systems. (Roland Puntaier)
2012-08-29updated for version 7.3.644Bram Moolenaar
Problem: Dead code for BeOS GUI. Solution: Remove unused __BEOS__ stuff.
2012-07-10updated for version 7.3.597Bram Moolenaar
Problem: 'clipboard' "autoselect" only applies to the * register. (Sergey Vakulenko) Solution: Make 'autoselect' work for the + register. (Christian Brabant) Add the "autoselectplus" option in 'clipboard' and the "P" flag in 'guioptions'.
2012-05-27updated for version 7.3.531Bram Moolenaar
Problem: GUI does not work on MS-Windows. Solution: Add the missing #ifdef. (Patrick Avery)
2012-05-25updated for version 7.3.530Bram Moolenaar
Problem: Gvim does not work when 'guioptions' includes "f". (Davido) Solution: Call gui_mch_init_check() when running GUI in the foreground. (Yasuhiro Matsumoto)
2012-05-18updated for version 7.3.520Bram Moolenaar
Problem: Gvim starts up slow on Unbuntu 12.04. Solution: Move the call to gui_mch_init_check() to after fork(). (Yasuhiro Matsumoto) Do check $DISPLAY being set.
2011-10-20updated for version 7.3.344Bram Moolenaar
Problem: Problem with GUI startup related to XInitThreads. Solution: Use read() and write() instead of fputs() and fread(). (James Vega)
2011-09-14updated for version 7.3.315Bram Moolenaar
Problem: Opening a window before forking causes problems for GTK. Solution: Fork first, create the window in the child and report back to the parent process whether it worked. If successful the parent exits, if unsuccessful the child exits and the parent continues in the terminal. (Tim Starling)
2011-08-10updated for version 7.3.279Bram Moolenaar
Problem: With GTK, when gvim is full-screen and a tab is opened and using a specific monitor configuration the window is too big. Solution: Adjust the window size like on MS-Windows. (Yukihiro Nakadaira)
2011-06-26updated for version 7.3.234Bram Moolenaar
Problem: With GTK menu may be popping down. Solution: Use event time instead of GDK_CURRENT_TIME. (Hong Xu)
2011-06-20updated for version 7.3.229Bram Moolenaar
Problem: Using fork() makes gvim crash on Mac when build with CoreFoundation. Solution: Disallow fork() when __APPLE__ is defined. (Hisashi T Fujinaka)
2011-05-10updated for version 7.3.187Bram Moolenaar
Problem: The RISC OS port has obvious errors and is not being maintained. Solution: Remove the RISC OS files and code.
2011-01-17updated for version 7.3.102Bram Moolenaar
Problem: When using ":make", typing the next command and then getting the "reload" prompt the next command is (partly) eaten by the reload prompt. Solution: Accept ':' as a special character at the reload prompt to accept the default choice and execute the command.
2010-10-20updated for version 7.3.031Bram Moolenaar
Problem: Can't pass the X window ID to another application. Solution: Add v:windowid. (Christian J. Robinson, Lech Lorens)
2010-09-29updated for version 7.3.016Bram Moolenaar
Problem: Netbeans doesn't work under Athena. Solution: Support Athena, just like Motif. (Xavier de Gaye)
2010-08-08Remove unused code.Bram Moolenaar
2010-08-06Call gui_mch_update() before triggering GuiEnter autocmd. (Ron Aaron)Bram Moolenaar
2010-07-26Fix compiler warnings on 64 bit systems.Bram Moolenaar
2010-07-25Add support for horizontal scroll wheel. (Bjorn Winckler)Bram Moolenaar
2010-07-23Add the 'concealcursor' option to decide when the cursor line is to beBram Moolenaar
concealed or not. Rename 'conc' to 'cole' as the short name for 'conceallevel'.
2010-07-19Rename w_p_conceal to w_p_conc for consistency.Bram Moolenaar
2010-07-18Added strwidth() and strchars() functions.Bram Moolenaar
2010-07-14Support completion for ":find". (Nazri Ramliy)Bram Moolenaar
Cleanup white space.
2010-07-02Make updating text for conceal mode simpler. A few compiler warning fixes.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
2010-05-30Add a few #ifdefs to exclude functions that are not used. (Domnique Pelle)Bram Moolenaar
2010-05-22Add :nbstart and :nbclose.Bram Moolenaar
2010-05-22Included the patch to support netbeans in a terminal.Bram Moolenaar
2010-05-22Fix: window title not updated after file dropped.Bram Moolenaar
2010-05-16Add 'relativenumber' patch from Markus Heidelberg.Bram Moolenaar
2010-01-27updated for version 7.2.350Bram Moolenaar
Problem: Win32: When changing font the window may jump from the secondary to the primary screen. (Michael Wookey) Solution: When the screen position was negative don't correct it to zero.
2009-09-23updated for version 7.2-264Bram Moolenaar
2009-07-29updated for version 7.2-240Bram Moolenaar
2009-06-24updated for version 7.2-218Bram Moolenaar
2009-06-16updated for version 7.2-203Bram Moolenaar
2009-05-21updated for version 7.2-184Bram Moolenaar
2009-05-17updated for version 7.2-181Bram Moolenaar
2008-12-03updated for version 7.2-065Bram Moolenaar
2008-11-28updated for version 7.2-055Bram Moolenaar