summaryrefslogtreecommitdiff
path: root/src/ex_cmdidxs.h
Commit message (Collapse)AuthorAgeFilesLines
* patch 8.2.0818: Vim9: using a discovery phase doesn't work wellv8.2.0818Bram Moolenaar2020-05-241-24/+24
| | | | | | Problem: Vim9: using a discovery phase doesn't work well. Solution: Remove the discovery phase, instead compile a function only when it is used. Add :defcompile to compile def functions earlier.
* patch 8.2.0149: maintaining a Vim9 branch separately is more workv8.2.0149Bram Moolenaar2020-01-261-27/+27
| | | | | Problem: Maintaining a Vim9 branch separately is more work. Solution: Merge the Vim9 script changes.
* patch 8.1.1838: there is :spellwrong and :spellgood but not :spellrarev8.1.1838Bram Moolenaar2019-08-111-9/+9
| | | | | Problem: There is :spellwrong and :spellgood but not :spellrare. Solution: Add :spellrare. (Martin Tournoij, closes #4291)
* patch 8.1.1807: more functions can be used as a methodv8.1.1807Bram Moolenaar2019-08-041-23/+23
| | | | | | Problem: More functions can be used as a method. Solution: Add append(), appendbufline(), assert_equal(), etc. Also add the :eval command.
* patch 8.1.1539: not easy to define a variable and lock itv8.1.1539Bram Moolenaar2019-06-151-25/+25
| | | | | Problem: Not easy to define a variable and lock it. Solution: Add ":const".
* patch 8.1.1513: all popup functionality is in functions, except :popupclearv8.1.1513Bram Moolenaar2019-06-101-12/+12
| | | | | | Problem: All popup functionality is in functions, except :popupclear. Solution: Add popup_clear() for consistency. Also rename sound_stopall() to sound_clear().
* patch 8.1.1391: no popup window supportv8.1.1391Bram Moolenaar2019-05-251-12/+12
| | | | | Problem: No popup window support. Solution: Add initial code for popup windows. Add the 'wincolor' option.
* patch 8.1.1307: cannot reconnect to the X server after it restartedv8.1.1307Bram Moolenaar2019-05-091-4/+4
| | | | | Problem: Cannot reconnect to the X server after it restarted. Solution: Add the :xrestore command. (Adrian Kocis, closes #844)
* patch 8.1.1275: cannot navigate to errors before/after the cursorv8.1.1275Bram Moolenaar2019-05-051-26/+26
| | | | | | Problem: Cannot navigate to errors before/after the cursor. Solution: Add the :cbefore and :cafter commands. (Yegappan Lakshmanan, closes #4340)
* patch 8.1.1256: cannot navigate through errors relative to the cursorv8.1.1256Bram Moolenaar2019-05-031-26/+26
| | | | | | Problem: Cannot navigate through errors relative to the cursor. Solution: Add :cabove, :cbelow, :labove and :lbelow. (Yegappan Lakshmanan, closes #4316)
* patch 8.1.1218: cannot set a directory for a tab pagev8.1.1218Bram Moolenaar2019-04-271-8/+8
| | | | | Problem: Cannot set a directory for a tab page. Solution: Add the tab-local directory. (Yegappan Lakshmanan, closes #4212)
* patch 8.1.1116: cannot enforce a Vim script stylev8.1.1116Bram Moolenaar2019-04-041-9/+9
| | | | | Problem: Cannot enforce a Vim script style. Solution: Add the :scriptversion command. (closes #3857)
* patch 8.1.0763: nobody is using the Sun Workshop supportv8.1.0763Bram Moolenaar2019-01-171-5/+5
| | | | | Problem: Nobody is using the Sun Workshop support. Solution: Remove the Workshop support.
* patch 8.1.0706: tabline is not always redrawnv8.1.0706Bram Moolenaar2019-01-081-10/+10
| | | | | | | Problem: Tabline is not always redrawn when something that is used in 'tabline' changes. Solution: Add ":redrawtabline" so that a plugin can at least cause the redraw when needed.
* patch 8.1.0487: no menus specifically for the terminal windowv8.1.0487Bram Moolenaar2018-10-191-8/+8
| | | | | Problem: No menus specifically for the terminal window. Solution: Add :tlmenu. (Yee Cheng Chin, closes #3439) Add a menu test.
* patch 8.0.1108: cannot specify mappings for the terminal windowv8.0.1108Bram Moolenaar2017-09-141-8/+8
| | | | | | Problem: Cannot specify mappings for the terminal window. Solution: Add the :tmap command and associated code. (Jacob Askeland, closes #2073)
* patch 8.0.0693: no terminal emulator supportv8.0.0693Bram Moolenaar2017-07-071-8/+8
| | | | | | | Problem: No terminal emulator support. Cannot properly run commands in the GUI. Cannot run a job interactively with an ssh connection. Solution: Very early implementation of the :terminal command. Includes libvterm converted to ANSI C. Many parts still missing.
* patch 8.0.0572: building the command table requires Perlv8.0.0572Bram Moolenaar2017-04-201-0/+72
Problem: Building the command table requires Perl. Solution: Use a Vim script solution. (Dominique Pelle, closes #1641)