summaryrefslogtreecommitdiff
path: root/src/menu.c
Commit message (Collapse)AuthorAgeFilesLines
* patch 8.0.1571: can't build without GUIv8.0.1571Bram Moolenaar2018-03-051-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.1570Bram Moolenaar2018-03-051-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.1564Bram Moolenaar2018-03-041-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.1558Bram Moolenaar2018-03-031-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.1496Bram Moolenaar2018-02-101-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.1312Bram Moolenaar2017-11-181-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.1142Bram Moolenaar2017-09-231-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.1139Bram Moolenaar2017-09-231-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.1123Bram Moolenaar2017-09-171-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.0466Bram Moolenaar2017-03-161-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.0452Bram Moolenaar2017-03-121-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.0451Bram Moolenaar2017-03-121-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.0411Bram Moolenaar2017-03-041-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.2293Bram Moolenaar2016-08-291-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.2048Bram Moolenaar2016-07-161-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.1915Bram Moolenaar2016-06-101-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.1375Bram Moolenaar2016-02-201-3/+3
| | | | | Problem: Still some Win16 code. Solution: Remove FEAT_GUI_W16.(Hirohito Higashi)
* patch 7.4.1210v7.4.1210Bram Moolenaar2016-01-301-122/+69
| | | | | | Problem: Using old style function declarations. Solution: Change to new style function declarations. (script by Hirohito Higashi)
* patch 7.4.1198v7.4.1198Bram Moolenaar2016-01-291-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.212Bram Moolenaar2014-03-231-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.160Bram Moolenaar2011-04-111-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.095Bram Moolenaar2011-01-041-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 Moolenaar2010-07-141-16/+16
| | | | Cleanup white space.
* Fix a few compiler warnings. Fix crash with encrypted undo file.Bram Moolenaar2010-06-061-2/+2
|
* Improve the MS-Windows installer.Bram Moolenaar2010-05-241-1/+1
|
* Merge patch 7.2.434.Bram Moolenaar2010-05-161-0/+6
|
* updated for version 7.2.432v7.2.432Bram Moolenaar2010-05-141-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.431Bram Moolenaar2010-05-141-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.180Bram Moolenaar2009-05-171-2/+1
|
* updated for version 7.2-177v7.2.177Bram Moolenaar2009-05-161-8/+5
|
* updated for version 7.2-002v7.2.002Bram Moolenaar2008-08-171-0/+1
|
* updated for version 7.2av7.2aBram Moolenaar2008-06-241-4/+4
|
* updated for version 7.0-176v7.0.176Bram Moolenaar2006-12-051-1/+1
|
* updated for version 7.0-062v7.0.062Bram Moolenaar2006-08-161-0/+21
|
* updated for version 7.0-054v7.0.054Bram Moolenaar2006-08-161-0/+25
|
* updated for version 7.0g02Bram Moolenaar2006-05-031-1/+8
|
* updated for version 7.0gv7.0gBram Moolenaar2006-04-301-7/+7
|
* updated for version 7.0e06v7.0e06Bram Moolenaar2006-04-221-1/+2
|
* updated for version 7.0e04v7.0e04Bram Moolenaar2006-04-201-13/+16
|
* updated for version 7.0e01v7.0e01Bram Moolenaar2006-04-171-1/+1
|
* updated for version 7.0c01v7.0c01Bram Moolenaar2006-03-271-1/+1
|
* updated for version 7.0230v7.0230Bram Moolenaar2006-03-201-3/+20
|
* updated for version 7.0211v7.0211Bram Moolenaar2006-03-011-0/+3
|
* updated for version 7.0208v7.0208Bram Moolenaar2006-02-271-6/+6
|
* updated for version 7.0163v7.0163Bram Moolenaar2005-12-061-6/+5
|
* updated for version 7.0150v7.0150Bram Moolenaar2005-09-251-1/+7
|
* updated for version 7.0112v7.0112Bram Moolenaar2005-07-211-4/+15
|
* updated for version 7.0109v7.0109Bram Moolenaar2005-07-181-2/+1
|
* updated for version 7.0049Bram Moolenaar2005-02-071-0/+3
|
* updated for version 7.0025v7.0025Bram Moolenaar2004-12-271-1/+0
|