summaryrefslogtreecommitdiff
path: root/src/menu.c
AgeCommit message (Collapse)Author
2018-03-05patch 8.0.1571: can't build without GUIBram Moolenaar
Problem: Can't build without GUI. Solution: Adjust #ifdef for gui_find_menu().
2018-03-05patch 8.0.1570: can't use :popup for a menu in the terminalBram Moolenaar
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.
2018-03-04patch 8.0.1564: too many #ifdefsBram Moolenaar
Problem: Too many #ifdefs. Solution: Graduate the +autocmd feature. Takes away 450 #ifdefs and increases code size of tiny Vim by only 40 Kbyte.
2018-03-03patch 8.0.1558: no right-click menu in a terminalBram Moolenaar
Problem: No right-click menu in a terminal. Solution: Implement the right click menu for the terminal.
2018-02-10patch 8.0.1496: clearing a pointer takes two linesBram Moolenaar
Problem: Clearing a pointer takes two lines. Solution: Add VIM_CLEAR() and replace vim_clear(). (Hirohito Higashi, closes #2629)
2017-11-18patch 8.0.1312: balloon_show() only works in terminal when compiled with GUIBram 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-23patch 8.0.1142: window toolbar menu gets a tear-off itemBram Moolenaar
Problem: Window toolbar menu gets a tear-off item. Solution: Recognize the window toolbar.
2017-09-23patch 8.0.1139: using window toolbar changes stateBram Moolenaar
Problem: Using window toolbar changes state. Solution: Always execute window toolbar actions in Normal mode.
2017-09-17patch 8.0.1123: cannot define a toolbar for a windowBram Moolenaar
Problem: Cannot define a toolbar for a window. Solution: Add a window-local toolbar.
2017-03-16patch 8.0.0466: still macros that should be all-capsBram Moolenaar
Problem: There are still a few macros that should be all-caps. Solution: Make a few more macros all-caps.
2017-03-12patch 8.0.0452: some macros are in lower caseBram Moolenaar
Problem: Some macros are in lower case. Solution: Make a few more macros upper case.
2017-03-12patch 8.0.0451: some macros are in lower caseBram Moolenaar
Problem: Some macros are in lower case. Solution: Make a few more macros upper case. Avoid lower case macros use an argument twice.
2017-03-04patch 8.0.0411: menu translations don't match when case is changed.Bram Moolenaar
Problem: We can't change the case in menu entries, it breaks translations. Solution: Ignore case when looking up a menu translation.
2016-08-29patch 7.4.2293Bram Moolenaar
Problem: Modelines in source code are inconsistant. Solution: Use the same line in most files. Add 'noet'. (Naruhiko Nishino)
2016-07-16patch 7.4.2048Bram Moolenaar
Problem: There is still code and help for unsupported systems. Solution: Remove the code and text. (Hirohito Higashi)
2016-06-10patch 7.4.1915Bram Moolenaar
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)
2016-02-20patch 7.4.1375Bram Moolenaar
Problem: Still some Win16 code. Solution: Remove FEAT_GUI_W16.(Hirohito Higashi)
2016-01-30patch 7.4.1210Bram Moolenaar
Problem: Using old style function declarations. Solution: Change to new style function declarations. (script by Hirohito Higashi)
2016-01-29patch 7.4.1198Bram Moolenaar
Problem: Still using __ARGS. Solution: Remove __ARGS in several files. (script by Hirohito Higashi) Also remove use of HAVE_STDARG_H.
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.
2011-04-11updated for version 7.3.160Bram Moolenaar
Problem: Unsafe string copying. Solution: Use vim_strncpy() instead of strcpy(). Use vim_strcat() instead of strcat().
2011-01-04updated for version 7.3.095Bram Moolenaar
Problem: Win32: In Chinese tear-off menu doesn't work. (Weasley) Solution: Use menu_name_equal(). (Alex Jakushev)
2010-07-14Support completion for ":find". (Nazri Ramliy)Bram Moolenaar
Cleanup white space.
2010-06-06Fix a few compiler warnings. Fix crash with encrypted undo file.Bram Moolenaar
2010-05-24Improve the MS-Windows installer.Bram Moolenaar
2010-05-16Merge patch 7.2.434.Bram Moolenaar
2010-05-14updated for version 7.2.432Bram Moolenaar
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)
2010-05-14updated for version 7.2.431Bram Moolenaar
Problem: ":amenu" moves the cursor when in Insert mode. Solution: Use CTRL-\ CTRL-O instead of CTRL-O. (Christian Brabandt)
2009-05-17updated for version 7.2-180Bram Moolenaar
2009-05-16updated for version 7.2-177Bram Moolenaar
2008-08-17updated for version 7.2-002Bram Moolenaar
2008-06-24updated for version 7.2aBram Moolenaar
2006-12-05updated for version 7.0-176Bram Moolenaar
2006-08-16updated for version 7.0-062Bram Moolenaar
2006-08-16updated for version 7.0-054Bram Moolenaar
2006-05-03updated for version 7.0g02Bram Moolenaar
2006-04-30updated for version 7.0gBram Moolenaar
2006-04-22updated for version 7.0e06Bram Moolenaar
2006-04-20updated for version 7.0e04Bram Moolenaar
2006-04-17updated for version 7.0e01Bram Moolenaar
2006-03-27updated for version 7.0c01Bram Moolenaar
2006-03-20updated for version 7.0230Bram Moolenaar
2006-03-01updated for version 7.0211Bram Moolenaar
2006-02-27updated for version 7.0208Bram Moolenaar
2005-12-06updated for version 7.0163Bram Moolenaar
2005-09-25updated for version 7.0150Bram Moolenaar
2005-07-21updated for version 7.0112Bram Moolenaar
2005-07-18updated for version 7.0109Bram Moolenaar
2005-02-07updated for version 7.0049Bram Moolenaar
2004-12-27updated for version 7.0025Bram Moolenaar