summaryrefslogtreecommitdiff
path: root/src/ex_cmds2.c
AgeCommit message (Collapse)Author
2013-06-28updated for version 7.3.1257Bram Moolenaar
Problem: With GNU gettext() ":lang de_DE.utf8" does not always result in German messages. Solution: Clear the $LANGUAGE environment variable.
2013-06-10updated for version 7.3.1163Bram Moolenaar
Problem: Not easy to load Python modules. Solution: Search "python2", "python3" and "pythonx" directories in 'runtimepath' for Python modules. (ZyX)
2013-06-10updated for version 7.3.1159Bram Moolenaar
Problem: The round() function is not always available. (Christ van Willegen) Solution: Use the solution from f_round().
2013-06-08updated for version 7.3.1149Bram Moolenaar
Problem: New regexp engine: Matching plain text could be faster. Solution: Detect a plain text match and handle it specifically. Add vim_regfree().
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-06updated for version 7.3.926Bram Moolenaar
Problem: Autocommands are triggered by setwinvar() et al. Missing BufEnter on :tabclose. Duplicate WinEnter on :tabclose. Wrong order of events for :tablose and :tabnew. Solution: Fix these autocommand events. (Zyx)
2013-05-06updated for version 7.3.925Bram Moolenaar
Problem: Typos in source files. Solution: Fix the typos. (Ken Takata)
2013-03-19updated for version 7.3.872Bram Moolenaar
Problem: On some systems case of file names is always ignored, on others never. Solution: Add the 'fileignorecase' option to control this at runtime. Implies 'wildignorecase'.
2012-10-03updated for version 7.3.677Bram Moolenaar
Problem: buf_spname() is used inconsistently. Solution: Make the return type a char_u pointer. Check the size of the returned string.
2012-06-29updated for version 7.3.570Bram Moolenaar
Problem: ":vimgrep" does not obey 'wildignore'. Solution: Apply 'wildignore' and 'suffixes' to ":vimgrep". (Ingo Karkat)
2012-06-20updated for version 7.3.562Bram Moolenaar
Problem: ":profdel" should not work when the +profile feature is disabled. Solution: Call ex_ni(). (Yasuhiro Matsumoto)
2012-06-13updated for version 7.3.551Bram Moolenaar
Problem: When using :tablose a TabEnter autocommand is triggered too early. (Karthick) Solution: Don't trigger *Enter autocommands before closing the tab. (Christian Brabandt)
2012-04-25updated for version 7.3.507Bram Moolenaar
Problem: When exiting with unsaved changes, selecting an existing file in the file dialog, there is no dialog to ask whether the existing file should be overwritten. (Felipe G. Nievinski) Solution: Call check_overwrite() before writing. (Christian Brabandt)
2012-03-23updated for version 7.3.480Bram Moolenaar
Problem: When using ":qa" and there is a changed buffer picking the buffer to jump to is not very good. Solution: Consider current and other tab pages. (Hirohito Higashi)
2012-02-22updated for version 7.3.455Bram Moolenaar
Problem: Using many continuation lines can be slow. Solution: Adjust the reallocation size to the current length.
2012-02-11updated for version 7.3.435Bram Moolenaar
Problem: Compiler warning for unused variable. Solution: Move the variable inside #ifdef.
2012-02-05updated for version 7.3.433Bram Moolenaar
Problem: Using continued lines in a Vim script can be slow. Solution: Instead of reallocating for every line use a growarray. (Yasuhiro Matsumoto)
2012-02-04updated for version 7.3.423Bram Moolenaar
Problem: Small mistakes in comments, proto and indent. Solution: Fix the mistakes. Also update runtime files
2011-10-20updated for version 7.3.345Bram Moolenaar
2011-06-26updated for version 7.3.233Bram Moolenaar
Problem: ":scriptnames" and ":breaklist" show long file names. Solution: Shorten to use "~/" when possible. (Jean-Rene David)
2011-05-19updated for version 7.3.198Bram Moolenaar
Problem: No completion for ":lang". Solution: Get locales to complete from. (Dominique Pelle)
2011-05-10updated for version 7.3.187Bram Moolenaar
Problem: The RISC OS port has obvious errors and is not being maintained. Solution: Remove the RISC OS files and code.
2011-04-11updated for version 7.3.161Bram Moolenaar
Problem: Items on the stack may be too big. Solution: Make items static or allocate them.
2011-02-25updated for version 7.3.127Bram Moolenaar
Problem: Compiler complains about comma. Solution: Remove comma after last enum element.
2010-12-17updated for version 7.3.085Bram Moolenaar
Problem: Inconsistency with preproc symbols. void * computation. Solution: Include vimio.h from vim.h. Add type cast.
2010-09-21updated for version 7.3.008Bram Moolenaar
Problem: 'cursorbind' is kept in places where 'scrollbind' is reset. Solution: Reset 'cursorbind'.
2010-07-27Fix build warnings and problems for tiny/small Win32 build. (Mike Williams)Bram Moolenaar
2010-06-05Add the conceal patch from Vince Negri.Bram Moolenaar
2010-05-21Other solution for GTK not changing the locale.Bram Moolenaar
2010-03-02updated for version 7.2.383Bram Moolenaar
Problem: Vim doesn't build cleanly with MSVC 2010. Solution: Change a few types. (George Reilly)
2010-02-24updated for version 7.2.369Bram Moolenaar
Problem: Error message is not easy to understand. Solution: Add quotes. (SungHyun Nam)
2010-02-03updated for version 7.2.353Bram Moolenaar
Problem: No command line completion for ":profile". Solution: Complete the subcommand and file name.
2010-01-20updated for version 7.2.344Bram Moolenaar
Problem: Can't compile on some systems Solution: Move the #ifdef outside of the mch_open macro. (Patrick Texier)
2010-01-19updated for version 7.2.343Bram Moolenaar
Problem: Can't compile on Win32. Solution: Insert the missing bar.
2010-01-19updated for version 7.2.339Bram Moolenaar
Problem: Part of --startuptime patch is missing. Solution: Add check for time_fd.
2010-01-19updated for version 7.2.338Bram Moolenaar
Problem: Part of FD_CLOEXEC change is missing. Solution: Include source file skipped because of typo.
2010-01-19updated for version 7.2.337Bram Moolenaar
Problem: The :compiler command doesn't function properly when invoked in a function. Solution: Add "g:" before "current_compiler". (Yukihiro Nakadaira)
2009-05-16updated for version 7.2-179Bram Moolenaar
2009-05-14updated for version 7.2-173Bram Moolenaar
2009-05-13updated for version 7.2-169Bram Moolenaar
2009-02-05updated for version 7.2-102Bram Moolenaar
2009-02-04updated for version 7.2-100Bram Moolenaar
2008-11-15updated for version 7.2-041Bram Moolenaar
2008-09-07updated for version 7.2-012Bram Moolenaar
2008-07-13updated for version 7.2b-000Bram Moolenaar
2008-06-24updated for version 7.2aBram Moolenaar
2008-01-18updated for version 7.1-232Bram Moolenaar
2008-01-15updated for version 7.1-230Bram Moolenaar
2008-01-06updated for version 7.1-211Bram Moolenaar
2008-01-04updated for version 7.1-200Bram Moolenaar