summaryrefslogtreecommitdiffstats
path: root/src/ex_cmds.h
AgeCommit message (Collapse)Author
2014-12-08updated for version 7.4.542v7.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.530v7.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.486v7.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.450v7.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.449v7.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.213v7.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.211v7.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.083v7.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.1148v7.3.1148Bram Moolenaar
Problem: No command line completion for ":syntime". Solution: Implement the completion. (Dominique Pelle)
2013-06-06updated for version 7.3.1129v7.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.966v7.3.966Bram Moolenaar
Problem: There is ":py3do" but no ":pydo". Solution: Add the ":pydo" command. (Lilydjwg)
2013-05-15updated for version 7.3.957v7.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.714v7.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.628v7.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.591v7.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.523v7.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.444v7.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.230v7.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.
2010-07-17Added support for Python 3. (Roland Puntaier)Bram Moolenaar
2010-07-14Added Lua interfae. (Luis Carvalho)Bram Moolenaar
2010-07-11Support :browse for commands that use an error file argument. (Lech Lorens)Bram Moolenaar
2010-06-05Add the conceal patch from Vince Negri.Bram Moolenaar
2010-05-23Included patch for persistent undo. Lots of changes and added test.Bram Moolenaar
2010-05-22Add :nbstart and :nbclose.Bram Moolenaar
2010-05-16updated for version 7.2.435Bram Moolenaar
Problem: Crash when using bad_char_idx uninitialized. (Patrick Texier) Solution: Don't use bad_char_idx, reproduce the ++bad argument from bad_char.
2010-05-14updated for version 7.2.430v7.2.430Bram Moolenaar
Problem: The ++bad argument is handled wrong, resulting in an invalid memory access. Solution: Use the bad_char field only for the replacement character, add bad_char_idx to store the position. (Dominique Pelle)
2010-05-14updated for version 7.2.425v7.2.425Bram Moolenaar
Problem: Some compilers complain about fourth EX() argument. Solution: Add cast to long_u.
2010-05-14updated for version 7.2.424v7.2.424Bram Moolenaar
Problem: ":colorscheme" without an argument doesn't do anything. Solution: Make it echo the current color scheme name. (partly by Christian Brabandt)
2010-05-13updated for version 7.2.420v7.2.420Bram Moolenaar
Problem: ":argedit" does not accept "++enc=utf8" as documented. (Dominique Pelle) Solution: Add the ARGOPT flag to ":argedit".
2009-07-09updated for version 7.2-223v7.2.223Bram Moolenaar
2008-11-09updated for version 7.2-031v7.2.031Bram Moolenaar
2008-11-06updated for version 7.2-030v7.2.030Bram Moolenaar
2008-11-06updated for version 7.2-027v7.2.027Bram Moolenaar
2008-09-18updated for version 7.2-019v7.2.019Bram Moolenaar
2008-06-24updated for version 7.2av7.2aBram Moolenaar
2008-01-11updated for version 7.1-217v7.1.217Bram Moolenaar
2007-03-08updated for version 7.0-210v7.0.210Bram Moolenaar
2006-06-22updated for version 7.0-030v7.0.030Bram Moolenaar
2006-04-07updated for version 7.0c12v7.0c12Bram Moolenaar
2006-04-06updated for version 7.0c11v7.0c11Bram Moolenaar
2006-04-05updated for version 7.0c10v7.0c10Bram Moolenaar
2006-03-24updated for version 7.0bv7.0bBram Moolenaar
2006-03-23updated for version 7.0232v7.0232Bram Moolenaar
2006-03-20updated for version 7.0230v7.0230Bram Moolenaar
2006-03-17updated for version 7.0227v7.0227Bram Moolenaar
2006-03-16updated for version 7.0226v7.0226Bram Moolenaar
2006-03-15updated for version 7.0225v7.0225Bram Moolenaar
2006-03-14updated for version 7.0224v7.0224Bram Moolenaar