summaryrefslogtreecommitdiff
path: root/src/ex_cmds.h
AgeCommit message (Collapse)Author
2016-11-15patch 8.0.0086Bram Moolenaar
Problem: Cannot add a comment after ":hide". (Norio Takagi) Solution: Make it work, add a test. (Hirohito Higashi)
2016-11-12patch 8.0.0081Bram Moolenaar
Problem: Inconsistent function names. Solution: Rename do_cscope to ex_cscope. Clean up comments.
2016-09-20patch 8.0.0006Bram Moolenaar
Problem: ":lb" is interpreted as ":lbottom" while the documentation says it means ":lbuffer". Solution: Adjust the order of the commands. (haya14busa, closes #1093)
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-08-26patch 7.4.2263Bram Moolenaar
Problem: :filter does not work for many commands. Can only get matching messages. Solution: Make :filter work for :command, :map, :list, :number and :print. Make ":filter!" show non-matching lines.
2016-08-23patch 7.4.2244Bram Moolenaar
Problem: Adding pattern to ":oldfiles" is not a generic solution. Solution: Add the ":filter /pat/ cmd" command modifier. Only works for some commands right now.
2016-08-20patch 7.4.2231Bram Moolenaar
Problem: ":oldfiles" output is a very long list. Solution: Add a pattern argument. (Coot, closes #575)
2016-07-16patch 7.4.2049Bram Moolenaar
Problem: There is no way to get a list of the error lists. Solution: Add ":chistory" and ":lhistory".
2016-07-09patch 7.4.2010Bram Moolenaar
Problem: There is a :cbottom command but no :lbottom command. Solution: Add :lbottom. (Yegappan Lakshmanan)
2016-07-07patch 7.4.1997Bram Moolenaar
Problem: Cannot easily scroll the quickfix window. Solution: Add ":cbottom".
2016-06-12patch 7.4.1925Bram Moolenaar
Problem: Viminfo does not merge file marks properly. Solution: Use a timestamp. Add the :clearjumps command.
2016-04-14patch 7.4.1738Bram Moolenaar
Problem: Count for ":messages" depends on number of lines. Solution: Add ADDR_OTHER address type.
2016-04-14patch 7.4.1735Bram Moolenaar
Problem: It is not possible to only see part of the message history. It is not possible to clear messages. Solution: Add a count to ":messages" and a clear argument. (Yasuhiro Matsumoto)
2016-03-12patch 7.4.1550Bram Moolenaar
Problem: Cannot load packages early. Solution: Add the ":packloadall" command.
2016-03-06patch 7.4.1499Bram Moolenaar
Problem: No error message when :packadd does not find anything. Solution: Add an error message. (Hirohito Higashi)
2016-03-04patch 7.4.1486Bram Moolenaar
Problem: ":loadplugin" is not optimal, some people find it confusing. Solution: Only use ":packadd" with an optional "!".
2016-03-03patch 7.4.1480Bram Moolenaar
Problem: Cannot add a pack direcory without loading a plugin. Solution: Add the :packadd command.
2016-02-27patch 7.4.1433Bram Moolenaar
Problem: The Sniff interface is no longer useful, the tool has not been available for may years. Solution: Delete the Sniff interface and related code.
2016-02-21patch 7.4.1384Bram Moolenaar
Problem: It is not easy to use a set of plugins and their dependencies. Solution: Add packages, ":loadopt", 'packpath'.
2016-02-20patch 7.4.1375Bram Moolenaar
Problem: Still some Win16 code. Solution: Remove FEAT_GUI_W16.(Hirohito Higashi)
2016-01-29patch 7.4.1200Bram Moolenaar
Problem: Still using __ARGS. Solution: Remove __ARGS in several files. (script by Hirohito Higashi)
2016-01-23patch 7.4.1161Bram Moolenaar
Problem: ":argadd" without argument is supposed to add the current buffer name to the arglist. Solution: Make it work as documented. (Coot, closes #577)
2015-12-31patch 7.4.1005Bram Moolenaar
Problem: Vim users are not always happy. Solution: Make them happy.
2015-09-08patch 7.4.858Bram Moolenaar
Problem: It's a bit clumsy to execute a command on a list of matches. Solution: Add the ":ldo", ":lfdo", ":cdo" and ":cfdo" commands. (Yegappan Lakshmanan)
2015-07-21patch 7.4.791Bram Moolenaar
Problem: The buffer list can be very long. Solution: Add an argument to ":ls" to specify the type of buffer to list. (Marcin Szamotulski)
2015-01-20updated for version 7.4.588Bram Moolenaar
Problem: ":0argedit foo" puts the new argument in the second place instead of the first. Solution: Adjust the range type. (Ingo Karkat)
2015-01-20updated for version 7.4.585Bram Moolenaar
Problem: Range for :bdelete does not work. (Ronald Schild) Solution: Also allow unloaded buffers.
2015-01-07updated for version 7.4.566Bram Moolenaar
Problem: :argdo, :bufdo, :windo and :tabdo don't take a range. Solution: Support the range. (Marcin Szamotulski)
2015-01-07updated for version 7.4.565Bram Moolenaar
Problem: Ranges for arguments, buffers, tabs, etc. are not checked to be valid but limited to the maximum. This can cause the wrong thing to happen. Solution: Give an error for an invalid value. (Marcin Szamotulski) Use windows range for ":wincmd".
2014-12-17updated for version 7.4.553Bram Moolenaar
Problem: Various small issues. Solution: Fix those issues.
2014-12-08updated for version 7.4.542Bram Moolenaar
Problem: Using a range for window and buffer commands has a few problems. Cannot specify the type of range for a user command. Solution: Add the -addr argument for user commands. Fix problems. (Marcin Szamotulski)
2014-11-27updated for version 7.4.530Bram Moolenaar
Problem: Many commands take a count or range that is not using line numbers. Solution: For each command specify what kind of count it uses. For windows, buffers and arguments have "$" and "." have a relevant meaning. (Marcin Szamotulski)
2014-10-21updated for version 7.4.486Bram Moolenaar
Problem: Check for writing to a yank register is wrong. Solution: Negate the check. (Zyx). Also clean up the #ifdefs.
2014-09-19updated for version 7.4.450Bram Moolenaar
Problem: Not all commands that edit another buffer support the +cmd argument. Solution: Add the +cmd argument to relevant commands. (Marcin Szamotulski)
2014-09-19updated for version 7.4.449Bram Moolenaar
Problem: Can't easily close the help window. (Chris Gaal) Solution: Add ":helpclose". (Christian Brabandt)
2014-03-23updated for version 7.4.213Bram Moolenaar
Problem: It's not possible to open a new buffer without creating a swap file. Solution: Add the ":noswapfile" modifier. (Christian Brabandt)
2014-03-22updated for version 7.4.211Bram Moolenaar
Problem: ":lu" is an abbreviation for ":lua", but it should be ":lunmap". (ZyX) Solution: Move "lunmap" to above "lua".
2013-11-09updated for version 7.4.083Bram Moolenaar
Problem: It's hard to avoid adding a used pattern to the search history. Solution: Add the ":keeppatterns" modifier. (Christian Brabandt)
2013-06-08updated for version 7.3.1148Bram Moolenaar
Problem: No command line completion for ":syntime". Solution: Implement the completion. (Dominique Pelle)
2013-06-06updated for version 7.3.1129Bram Moolenaar
Problem: Can't see what pattern in syntax highlighting is slow. Solution: Add the ":syntime" command.
2013-05-17updated for version 7.3.966Bram Moolenaar
Problem: There is ":py3do" but no ":pydo". Solution: Add the ":pydo" command. (Lilydjwg)
2013-05-15updated for version 7.3.957Bram Moolenaar
Problem: Python does not have a "do" command like Perl or Lua. Solution: Add the ":py3do" command. (Lilydjwg)
2012-11-14updated for version 7.3.714Bram Moolenaar
Problem: Inconsistency: :set can be used in the sandbox, but :setlocal and :setglobal cannot. (Michael Henry) Solution: Fix the flags for :setlocal and :setglobal. (Christian Brabandt)
2012-08-08updated for version 7.3.628Bram Moolenaar
Problem: ":open" does not allow for a !, which results in a confusing error message. (Shawn Wilson) Solution: Allow ! on ":open". (Christian Brabandt)
2012-07-06updated for version 7.3.591Bram Moolenaar
Problem: Can only move to a tab by absolute number. Solution: Move a number of tabs to the left or the right. (Lech Lorens)
2012-05-18updated for version 7.3.523Bram Moolenaar
Problem: ":diffupdate" doesn't check for files changed elsewhere. Solution: Add the ! flag. (Christian Brabandt)
2012-02-13updated for version 7.3.444Bram Moolenaar
Problem: ":all!" and ":sall!" give error E477, even though the documentation says these are valid commands. Solution: Support the exclamation mark. (Hirohito Higashi)
2011-06-20updated for version 7.3.230Bram Moolenaar
Problem: ":wundo" and ":rundo" don't unescape their argument. (Aaron Thoma) Solution: Use FILE1 instead of XFILE.
2010-07-21Fix that :py3file was not working.Bram Moolenaar
2010-07-19Rename some "python3" symbols to "py3", as the command name.Bram Moolenaar
Documentation updates.