summaryrefslogtreecommitdiffstats
path: root/src/ex_cmds2.c
AgeCommit message (Collapse)Author
2016-06-12patch 7.4.1924v7.4.1924Bram Moolenaar
Problem: Missing "void" for functions without argument. Solution: Add "void". (Hirohito Higashi)
2016-06-02patch 7.4.1873v7.4.1873Bram Moolenaar
Problem: When a callback adds a timer the GUI doesn't use it until later. (Ramel Eshed) Solution: Return early if a callback adds a timer.
2016-05-31patch 7.4.1861v7.4.1861Bram Moolenaar
Problem: Compiler warnings with 64 bit compiler. Solution: Change int to size_t. (Mike William)
2016-05-31patch 7.4.1860v7.4.1860Bram Moolenaar
Problem: Using a partial for timer_start() may cause a crash. Solution: Set the copyID in timer objects. (Ozaki Kiichi)
2016-05-24patch 7.4.1840v7.4.1840Bram Moolenaar
Problem: When using packages an "after" directory cannot be used. Solution: Add the "after" directory of the package to 'runtimepath' if it exists.
2016-05-17patch 7.4.1832v7.4.1832Bram Moolenaar
Problem: Memory leak in debug commands. Solution: Free memory before overwriting the pointer. (hint by Justin Keyes)
2016-04-23patch 7.4.1780v7.4.1780Bram Moolenaar
Problem: Warnings reported by cppcheck. Solution: Fix the warnings. (Dominique Pelle)
2016-04-05patch 7.4.1712v7.4.1712Bram Moolenaar
Problem: For plugins in packages, plugin authors need to take care of all dependencies. Solution: When loading "start" packages and for :packloadall, first add all directories to 'runtimepath' before sourcing plugins.
2016-04-02patch 7.4.1699v7.4.1699Bram Moolenaar
Problem: :packadd does not work the same when used early or late. Solution: Always load plugins matching "plugin/**/*.vim".
2016-03-19patch 7.4.1596v7.4.1596Bram Moolenaar
Problem: Memory leak. (Coverity) Solution: Free the pattern.
2016-03-17patch 7.4.1587v7.4.1587Bram Moolenaar
Problem: Compiler warnings with 64 bit compiler. Solution: Add type casts. (Mike Williams)
2016-03-16patch 7.4.1583v7.4.1583Bram Moolenaar
Problem: Warning for unitinialized variable. Solution: Initialize it. (Dominique)
2016-03-15patch 7.4.1578v7.4.1578Bram Moolenaar
Problem: There is no way to invoke a function later or periodically. Solution: Add timer support.
2016-03-12patch 7.4.1553v7.4.1553Bram Moolenaar
Problem: ":runtime" does not use 'packpath'. Solution: Add "what" argument.
2016-03-12patch 7.4.1552v7.4.1552Bram Moolenaar
Problem: ":colorscheme" does not use 'packpath'. Solution: Also use in "start" and "opt" directories in 'packpath'.
2016-03-12patch 7.4.1551v7.4.1551Bram Moolenaar
Problem: Cannot generate help tags in all doc directories. Solution: Make ":helptags ALL" work.
2016-03-12patch 7.4.1550v7.4.1550Bram Moolenaar
Problem: Cannot load packages early. Solution: Add the ":packloadall" command.
2016-03-09patch 7.4.1528v7.4.1528Bram Moolenaar
Problem: Using "ever" for packages is confusing. Solution: Use "start", as it's related to startup.
2016-03-06patch 7.4.1499v7.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.1486v7.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.1481v7.4.1481Bram Moolenaar
Problem: Can't build with small features. Solution: Add #ifdef.
2016-03-03patch 7.4.1480v7.4.1480Bram Moolenaar
Problem: Cannot add a pack direcory without loading a plugin. Solution: Add the :packadd command.
2016-03-03patch 7.4.1479v7.4.1479Bram Moolenaar
Problem: No testfor ":loadplugin". Solution: Add a test. Fix how option is being set.
2016-03-03patch 7.4.1478v7.4.1478Bram Moolenaar
Problem: ":loadplugin" doesn't take care of ftdetect files. Solution: Also load ftdetect scripts when appropriate.
2016-03-03patch 7.4.1476v7.4.1476Bram Moolenaar
Problem: Function arguments marked as unused while they are not. Solution: Remove UNUSED. (Yegappan Lakshmanan)
2016-02-27patch 7.4.1433v7.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-23patch 7.4.1403v7.4.1403Bram Moolenaar
Problem: Can't build without the quickfix feature. Solution: Add #ifdefs. Call ex_ni() for unimplemented commands. (Yegappan Lakshmanan)
2016-02-23patch 7.4.1399v7.4.1399Bram Moolenaar
Problem: The MS-DOS code does not build. Solution: Remove the old MS-DOS code.
2016-02-22patch 7.4.1396v7.4.1396Bram Moolenaar
Problem: Compiler warnings for conversions. Solution: Add type cast.
2016-02-22patch 7.4.1388v7.4.1388Bram Moolenaar
Problem: Compiler warning. (Cesar Romani) Solution: Initialize variable.
2016-02-21patch 7.4.1384v7.4.1384Bram Moolenaar
Problem: It is not easy to use a set of plugins and their dependencies. Solution: Add packages, ":loadopt", 'packpath'.
2016-02-16patch 7.4.1334v7.4.1334Bram Moolenaar
Problem: Many compiler warnings with MingW. Solution: Add type casts. (Yasuhiro Matsumoto)
2016-02-07patch 7.4.1285v7.4.1285Bram Moolenaar
Problem: Cannot measure elapsed time. Solution: Add reltimefloat().
2016-01-31patch 7.4.1225v7.4.1225Bram Moolenaar
Problem: Still a few old style function declarations. Solution: Make them new style. (Hirohito Higashi)
2016-01-31patch 7.4.1222v7.4.1222Bram Moolenaar
Problem: ":normal" command and others missing in tiny build. Solution: Graduate FEAT_EX_EXTRA.
2016-01-30patch 7.4.1206v7.4.1206Bram Moolenaar
Problem: Using old style function declarations. Solution: Change to new style function declarations. (script by Hirohito Higashi)
2016-01-29patch 7.4.1200v7.4.1200Bram Moolenaar
Problem: Still using __ARGS. Solution: Remove __ARGS in several files. (script by Hirohito Higashi)
2016-01-29patch 7.4.1196v7.4.1196Bram Moolenaar
Problem: Still using __ARGS. Solution: Remove __ARGS in several files. (script by Hirohito Higashi)
2016-01-23patch 7.4.1161v7.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)
2016-01-17patch 7.4.1123v7.4.1123Bram Moolenaar
Problem: Using ":argadd" when there are no arguments results in the second argument to be the current one. (Yegappan Lakshmanan) Solution: Correct the w_arg_idx value.
2016-01-17patch 7.4.1119v7.4.1119Bram Moolenaar
Problem: argidx() has a wrong value after ":%argdelete". (Yegappan Lakshmanan) Solution: Correct the value of w_arg_idx. Add a test.
2016-01-16patch 7.4.1112v7.4.1112Bram Moolenaar
Problem: When using ":next" with an illegal file name no error is reported. Solution: Give an error message.
2016-01-16patch 7.4.1102v7.4.1102Bram Moolenaar
Problem: Debugger has no stack backtrace support. Solution: Add "backtrace", "frame", "up" and "down" commands. (Alberto Fanjul, closes #433)
2016-01-02patch 7.4.1037v7.4.1037Bram Moolenaar
Problem: Using "q!" when there is a modified hidden buffer does not unload the current buffer, resulting in the need to abandon it again. Solution: When using "q!" unload the current buffer when needed. (Yasuhiro Matsumoto, Hirohito Higashi)
2015-09-09patch 7.4.865v7.4.865Bram Moolenaar
Problem: Compiler warning for uninitialized variable. Solution: Initialize.
2015-09-08patch 7.4.858v7.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-08-11patch 7.4.822v7.4.822Bram Moolenaar
Problem: More problems reported by coverity. Solution: Avoid the warnings. (Christian Brabandt)
2015-04-13patch 7.4.697v7.4.697Bram Moolenaar
Problem: The filename used for ":profile" must be given literally. Solution: Expand "~" and environment variables. (Marco Hinz)
2015-02-27updated for version 7.4.646v7.4.646Bram Moolenaar
Problem: ":bufdo" may start at a deleted buffer. Solution: Find the first not deleted buffer. (Shane Harper)
2015-01-07updated for version 7.4.566v7.4.566Bram Moolenaar
Problem: :argdo, :bufdo, :windo and :tabdo don't take a range. Solution: Support the range. (Marcin Szamotulski)