Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | patch 8.0.1571: can't build without GUIv8.0.1571 | Bram Moolenaar | 2018-03-05 | 1 | -0/+1 |
| | | | | | Problem: Can't build without GUI. Solution: Adjust #ifdef for gui_find_menu(). | ||||
* | patch 8.0.1570: can't use :popup for a menu in the terminalv8.0.1570 | Bram Moolenaar | 2018-03-05 | 1 | -7/+11 |
| | | | | | | Problem: Can't use :popup for a menu in the terminal. (Wei Zhang) Solution: Make :popup work in the terminal. Also fix that entries were included that don't work in the current state. | ||||
* | patch 8.0.1564: too many #ifdefsv8.0.1564 | Bram Moolenaar | 2018-03-04 | 1 | -2/+0 |
| | | | | | | Problem: Too many #ifdefs. Solution: Graduate the +autocmd feature. Takes away 450 #ifdefs and increases code size of tiny Vim by only 40 Kbyte. | ||||
* | patch 8.0.1558: no right-click menu in a terminalv8.0.1558 | Bram Moolenaar | 2018-03-03 | 1 | -57/+67 |
| | | | | | Problem: No right-click menu in a terminal. Solution: Implement the right click menu for the terminal. | ||||
* | patch 8.0.1496: clearing a pointer takes two linesv8.0.1496 | Bram Moolenaar | 2018-02-10 | 1 | -2/+1 |
| | | | | | | Problem: Clearing a pointer takes two lines. Solution: Add VIM_CLEAR() and replace vim_clear(). (Hirohito Higashi, closes #2629) | ||||
* | patch 8.0.1312: balloon_show() only works in terminal when compiled with GUIv8.0.1312 | Bram Moolenaar | 2017-11-18 | 1 | -2/+2 |
| | | | | | | 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. | ||||
* | patch 8.0.1142: window toolbar menu gets a tear-off itemv8.0.1142 | Bram Moolenaar | 2017-09-23 | 1 | -1/+2 |
| | | | | | Problem: Window toolbar menu gets a tear-off item. Solution: Recognize the window toolbar. | ||||
* | patch 8.0.1139: using window toolbar changes statev8.0.1139 | Bram Moolenaar | 2017-09-23 | 1 | -4/+25 |
| | | | | | Problem: Using window toolbar changes state. Solution: Always execute window toolbar actions in Normal mode. | ||||
* | patch 8.0.1123: cannot define a toolbar for a windowv8.0.1123 | Bram Moolenaar | 2017-09-17 | 1 | -66/+224 |
| | | | | | Problem: Cannot define a toolbar for a window. Solution: Add a window-local toolbar. | ||||
* | patch 8.0.0466: still macros that should be all-capsv8.0.0466 | Bram Moolenaar | 2017-03-16 | 1 | -2/+2 |
| | | | | | Problem: There are still a few macros that should be all-caps. Solution: Make a few more macros all-caps. | ||||
* | patch 8.0.0452: some macros are in lower casev8.0.0452 | Bram Moolenaar | 2017-03-12 | 1 | -12/+12 |
| | | | | | Problem: Some macros are in lower case. Solution: Make a few more macros upper case. | ||||
* | patch 8.0.0451: some macros are in lower casev8.0.0451 | Bram Moolenaar | 2017-03-12 | 1 | -4/+4 |
| | | | | | | Problem: Some macros are in lower case. Solution: Make a few more macros upper case. Avoid lower case macros use an argument twice. | ||||
* | patch 8.0.0411: menu translations don't match when case is changed.v8.0.0411 | Bram Moolenaar | 2017-03-04 | 1 | -2/+2 |
| | | | | | Problem: We can't change the case in menu entries, it breaks translations. Solution: Ignore case when looking up a menu translation. | ||||
* | patch 7.4.2293v7.4.2293 | Bram Moolenaar | 2016-08-29 | 1 | -1/+1 |
| | | | | | Problem: Modelines in source code are inconsistant. Solution: Use the same line in most files. Add 'noet'. (Naruhiko Nishino) | ||||
* | patch 7.4.2048v7.4.2048 | Bram Moolenaar | 2016-07-16 | 1 | -1/+1 |
| | | | | | Problem: There is still code and help for unsupported systems. Solution: Remove the code and text. (Hirohito Higashi) | ||||
* | patch 7.4.1915v7.4.1915 | Bram Moolenaar | 2016-06-10 | 1 | -0/+5 |
| | | | | | | Problem: The effect of the PopupMenu autocommand isn't directly visible. Solution: Call gui_update_menus() before displaying the popup menu. (Shane Harper, closs #855) | ||||
* | patch 7.4.1375v7.4.1375 | Bram Moolenaar | 2016-02-20 | 1 | -3/+3 |
| | | | | | Problem: Still some Win16 code. Solution: Remove FEAT_GUI_W16.(Hirohito Higashi) | ||||
* | patch 7.4.1210v7.4.1210 | Bram Moolenaar | 2016-01-30 | 1 | -122/+69 |
| | | | | | | Problem: Using old style function declarations. Solution: Change to new style function declarations. (script by Hirohito Higashi) | ||||
* | patch 7.4.1198v7.4.1198 | Bram Moolenaar | 2016-01-29 | 1 | -25/+25 |
| | | | | | | Problem: Still using __ARGS. Solution: Remove __ARGS in several files. (script by Hirohito Higashi) Also remove use of HAVE_STDARG_H. | ||||
* | updated for version 7.4.212v7.4.212 | Bram Moolenaar | 2014-03-23 | 1 | -4/+0 |
| | | | | | | Problem: Now that the +visual feature is always enabled the #ifdefs for it are not useful. Solution: Remove the checks for FEAT_VISUAL. | ||||
* | updated for version 7.3.160v7.3.160 | Bram Moolenaar | 2011-04-11 | 1 | -3/+4 |
| | | | | | | Problem: Unsafe string copying. Solution: Use vim_strncpy() instead of strcpy(). Use vim_strcat() instead of strcat(). | ||||
* | updated for version 7.3.095v7.3.095 | Bram Moolenaar | 2011-01-04 | 1 | -3/+3 |
| | | | | | Problem: Win32: In Chinese tear-off menu doesn't work. (Weasley) Solution: Use menu_name_equal(). (Alex Jakushev) | ||||
* | Support completion for ":find". (Nazri Ramliy) | Bram Moolenaar | 2010-07-14 | 1 | -16/+16 |
| | | | | Cleanup white space. | ||||
* | Fix a few compiler warnings. Fix crash with encrypted undo file. | Bram Moolenaar | 2010-06-06 | 1 | -2/+2 |
| | |||||
* | Improve the MS-Windows installer. | Bram Moolenaar | 2010-05-24 | 1 | -1/+1 |
| | |||||
* | Merge patch 7.2.434. | Bram Moolenaar | 2010-05-16 | 1 | -0/+6 |
| | |||||
* | updated for version 7.2.432v7.2.432 | Bram Moolenaar | 2010-05-14 | 1 | -66/+153 |
| | | | | | | | Problem: When menus are translated they can only be found by the translated name. That makes ":emenu" difficult to use. Solution: Store the untranslated name and use it for completion and :emenu. (Edward L. Fox / Liang Peng / Bezetek James) | ||||
* | updated for version 7.2.431v7.2.431 | Bram Moolenaar | 2010-05-14 | 1 | -4/+13 |
| | | | | | Problem: ":amenu" moves the cursor when in Insert mode. Solution: Use CTRL-\ CTRL-O instead of CTRL-O. (Christian Brabandt) | ||||
* | updated for version 7.2-180v7.2.180 | Bram Moolenaar | 2009-05-17 | 1 | -2/+1 |
| | |||||
* | updated for version 7.2-177v7.2.177 | Bram Moolenaar | 2009-05-16 | 1 | -8/+5 |
| | |||||
* | updated for version 7.2-002v7.2.002 | Bram Moolenaar | 2008-08-17 | 1 | -0/+1 |
| | |||||
* | updated for version 7.2av7.2a | Bram Moolenaar | 2008-06-24 | 1 | -4/+4 |
| | |||||
* | updated for version 7.0-176v7.0.176 | Bram Moolenaar | 2006-12-05 | 1 | -1/+1 |
| | |||||
* | updated for version 7.0-062v7.0.062 | Bram Moolenaar | 2006-08-16 | 1 | -0/+21 |
| | |||||
* | updated for version 7.0-054v7.0.054 | Bram Moolenaar | 2006-08-16 | 1 | -0/+25 |
| | |||||
* | updated for version 7.0g02 | Bram Moolenaar | 2006-05-03 | 1 | -1/+8 |
| | |||||
* | updated for version 7.0gv7.0g | Bram Moolenaar | 2006-04-30 | 1 | -7/+7 |
| | |||||
* | updated for version 7.0e06v7.0e06 | Bram Moolenaar | 2006-04-22 | 1 | -1/+2 |
| | |||||
* | updated for version 7.0e04v7.0e04 | Bram Moolenaar | 2006-04-20 | 1 | -13/+16 |
| | |||||
* | updated for version 7.0e01v7.0e01 | Bram Moolenaar | 2006-04-17 | 1 | -1/+1 |
| | |||||
* | updated for version 7.0c01v7.0c01 | Bram Moolenaar | 2006-03-27 | 1 | -1/+1 |
| | |||||
* | updated for version 7.0230v7.0230 | Bram Moolenaar | 2006-03-20 | 1 | -3/+20 |
| | |||||
* | updated for version 7.0211v7.0211 | Bram Moolenaar | 2006-03-01 | 1 | -0/+3 |
| | |||||
* | updated for version 7.0208v7.0208 | Bram Moolenaar | 2006-02-27 | 1 | -6/+6 |
| | |||||
* | updated for version 7.0163v7.0163 | Bram Moolenaar | 2005-12-06 | 1 | -6/+5 |
| | |||||
* | updated for version 7.0150v7.0150 | Bram Moolenaar | 2005-09-25 | 1 | -1/+7 |
| | |||||
* | updated for version 7.0112v7.0112 | Bram Moolenaar | 2005-07-21 | 1 | -4/+15 |
| | |||||
* | updated for version 7.0109v7.0109 | Bram Moolenaar | 2005-07-18 | 1 | -2/+1 |
| | |||||
* | updated for version 7.0049 | Bram Moolenaar | 2005-02-07 | 1 | -0/+3 |
| | |||||
* | updated for version 7.0025v7.0025 | Bram Moolenaar | 2004-12-27 | 1 | -1/+0 |
| |