summaryrefslogtreecommitdiff
path: root/src/gui_gtk_x11.c
Commit message (Collapse)AuthorAgeFilesLines
...
* patch 7.4.731v7.4.731Bram Moolenaar2015-06-091-1/+3
| | | | | Problem: The tab menu shows "Close tab" even when it doesn't work. Solution: Don't show "Close tab" for the last tab. (John Marriott)
* updated for version 7.4.332v7.4.332Bram Moolenaar2014-06-171-10/+31
| | | | | | Problem: GTK: When a sign icon doesn't fit exactly there can be ugly gaps. Solution: Scale the sign to fit when the aspect ratio is not too far off. (Christian Brabandt)
* updated for version 7.4.295v7.4.295Bram Moolenaar2014-05-131-0/+1
| | | | | Problem: Various typos, bad white space and unclear comments. Solution: Fix typos. Improve white space. Update comments.
* updated for version 7.4.270v7.4.270Bram Moolenaar2014-04-291-4/+8
| | | | | Problem: Comparing pointers instead of the string they point to. Solution: Use strcmp(). (Ken Takata)
* updated for version 7.4.252v7.4.252Bram Moolenaar2014-04-061-0/+3
| | | | | Problem: Critical error in GTK, removing timer twice. Solution: Clear the timer after removing it. (James McCoy)
* updated for version 7.3.1278v7.3.1278Bram Moolenaar2013-06-301-0/+1
| | | | | | 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.
* updated for version 7.3.985v7.3.985Bram Moolenaar2013-05-211-0/+5
| | | | | | Problem: GTK vim not started as gvim doesn't set WM_CLASS property to a useful value. Solution: Call g_set_prgname() on startup. (James McCoy)
* updated for version 7.3.925v7.3.925Bram Moolenaar2013-05-061-1/+1
| | | | | Problem: Typos in source files. Solution: Fix the typos. (Ken Takata)
* updated for version 7.3.856v7.3.856Bram Moolenaar2013-03-131-5/+7
| | | | | Problem: When calling system() multi-byte clipboard contents is garbled. Solution: Save and restore the clipboard contents. (Yukihiro Nakadaira)
* updated for version 7.3.819v7.3.819Bram Moolenaar2013-02-141-2/+1
| | | | | Problem: Compiling without +eval and with Python isn't working. Solution: Add the eval feature when building with Python.
* updated for version 7.3.777v7.3.777Bram Moolenaar2013-01-231-0/+8
| | | | | Problem: When building with Gnome locale gets reset. Solution: Set locale after gnome_program_init(). (Christian Brabandt)
* updated for version 7.3.520v7.3.520Bram Moolenaar2012-05-181-2/+24
| | | | | | 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.
* updated for version 7.3.347v7.3.347Bram Moolenaar2011-10-261-1/+1
| | | | | | Problem: When dropping text from a browser on Vim it receives HTML even though "html" is excluded from 'clipboard'. (Andrei Avk) Solution: Fix the condition for TARGET_HTML.
* updated for version 7.3.279v7.3.279Bram Moolenaar2011-08-101-6/+16
| | | | | | 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)
* updated for version 7.3.234v7.3.234Bram Moolenaar2011-06-261-7/+5
| | | | | Problem: With GTK menu may be popping down. Solution: Use event time instead of GDK_CURRENT_TIME. (Hong Xu)
* updated for version 7.3.221v7.3.221Bram Moolenaar2011-06-191-2/+1
| | | | | | Problem: Text from the clipboard is sometimes handled as linewise, but not consistently. Solution: Assume the text is linewise when it ends in a CR or NL.
* updated for version 7.3.134v7.3.134Bram Moolenaar2011-02-251-1/+1
| | | | | Problem: Drag-n-drop doesn't work in KDE Dolphin. Solution: Add GDK_ACTION_MOVE flag. (Florian Degner)
* updated for version 7.3.130v7.3.130Bram Moolenaar2011-02-251-2/+3
| | | | | Problem: Variable misplaced in #ifdef. Solution: Move clipboard_event_time outside of #ifdef.
* Fix #ifdef for GDK_SUPER_MASK. (Stephan Schulz)Bram Moolenaar2010-08-151-2/+2
|
* Fix #ifdef for GDK_SUPER_MASK.Bram Moolenaar2010-08-131-1/+1
|
* Remove unused code.Bram Moolenaar2010-08-081-46/+0
|
* Improve positioning of combining characters in GTK.Bram Moolenaar2010-08-081-4/+11
|
* Fix: with newer GTK versions accented characters were drawn too much to theBram Moolenaar2010-08-071-15/+12
| | | | left.
* Add support for horizontal scroll wheel. (Bjorn Winckler)Bram Moolenaar2010-07-251-1/+7
|
* Support completion for ":find". (Nazri Ramliy)Bram Moolenaar2010-07-141-2/+2
| | | | Cleanup white space.
* Avoid use of the GTK mail_loop() so that the GtkFileChooser can be used.Bram Moolenaar2010-07-111-56/+6
| | | | (James Vega)
* Various small fixes from Dominique Pelle.Bram Moolenaar2010-06-261-2/+2
|
* Remove the old and not well supported GTK 1 code. (James Vega)Bram Moolenaar2010-06-251-1306/+18
|
* Fixes for time in clipboard request. Also fix ownership. (David Fries)Bram Moolenaar2010-06-221-1/+8
|
* One more fix for conceal patch.Bram Moolenaar2010-06-061-1/+1
|
* updated for version 7.2.442Bram Moolenaar2010-06-051-17/+67
| | | | | | Problem: Copy/paste with OpenOffice doesn't work. Solution: Do not offer the HTML target when it is not supported. (James Vega)
* Add :nbstart and :nbclose.Bram Moolenaar2010-05-221-3/+1
|
* Included the patch to support netbeans in a terminal.Bram Moolenaar2010-05-221-1/+2
|
* Avoid warnings for unused arguments when compiling with Gnome.Bram Moolenaar2010-05-171-11/+23
|
* First step in the Vim 7.3 branch. Changed version numbers.Bram Moolenaar2010-05-151-3/+3
|
* updated for version 7.2.358v7.2.358Bram Moolenaar2010-02-111-1/+1
| | | | | Problem: Compiler warnings on VMS. (Zoltan Arpadffy) Solution: Pass array itself instead its address. Return a value.
* updated for version 7.2-283v7.2.283Bram Moolenaar2009-11-031-2/+18
|
* updated for version 7.2-264v7.2.264Bram Moolenaar2009-09-231-0/+23
|
* updated for version 7.2-263v7.2.263Bram Moolenaar2009-09-231-5/+12
|
* updated for version 7.2-256v7.2.256Bram Moolenaar2009-09-111-0/+6
|
* updated for version 7.2-221v7.2.221Bram Moolenaar2009-07-011-18/+1
|
* updated for version 7.2-201v7.2.201Bram Moolenaar2009-06-161-0/+62
|
* updated for version 7.2-200v7.2.200Bram Moolenaar2009-06-161-4/+7
|
* updated for version 7.2-195v7.2.195Bram Moolenaar2009-06-031-2/+8
|
* updated for version 7.2-181v7.2.181Bram Moolenaar2009-05-171-109/+92
|
* updated for version 7.2-055v7.2.055Bram Moolenaar2008-11-281-6/+6
|
* updated for version 7.2a-018v7.2a.018Bram Moolenaar2008-07-081-4/+5
|
* updated for version 7.2a-012v7.2a.012Bram Moolenaar2008-07-021-3/+4
|
* updated for version 7.2av7.2aBram Moolenaar2008-06-241-0/+5
|
* updated for version 7.1-209v7.1.209Bram Moolenaar2008-01-061-1/+6
|