summaryrefslogtreecommitdiff
path: root/src/ex_docmd.c
AgeCommit message (Collapse)Author
2013-03-13updated for version 7.3.857Bram Moolenaar
Problem: The QuitPre autocommand event does not trigger for :qa and :wq. Solution: Trigger the event. (Tatsuro Fujii)
2013-02-26updated for version 7.3.838Bram Moolenaar
Problem: Insufficient testing for mksession. Solution: Add tests. (mostly by Roland Eggner)
2013-02-20updated for version 7.3.830Bram Moolenaar
Problem: :mksession confuses bytes, columns and characters when positioning the cursor. Solution: Use w_virtcol with "|" instead of w_cursor.col with "l".
2013-02-14updated for version 7.3.819Bram Moolenaar
Problem: Compiling without +eval and with Python isn't working. Solution: Add the eval feature when building with Python.
2012-12-05updated for version 7.3.753Bram Moolenaar
Problem: When there is a QuitPre autocommand using ":q" twice does not work for exiting when there are more files to edit. Solution: Do not decrement quitmore in an autocommand. (Techlive Zheng)
2012-11-28updated for version 7.3.743Bram Moolenaar
Problem: Tiny build still fails. Solution: Add #else in the right place.
2012-11-28updated for version 7.3.741Bram Moolenaar
Problem: Tiny build fails. Solution: Move #ifdef. (Ike Devolder)
2012-11-28updated for version 7.3.737Bram Moolenaar
Problem: When using do_cmdline() recursively did_endif is not reset, causing messages to be overwritten. Solution: Reset did_endif. (Christian Brabandt)
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-09-18updated for version 7.3.663Bram Moolenaar
Problem: End of color scheme name not clear in E185. (Aaron Lewis) Solution: Put the name in single quotes.
2012-08-23updated for version 7.3.637Bram Moolenaar
Problem: Cannot catch the error caused by a foldopen when there is no fold. (ZyX, Issue 48) Solution: Do not break out of the loop early when inside try/catch. (Christian Brabandt) Except when there is a syntax error.
2012-08-15updated for version 7.3.631Bram Moolenaar
Problem: Cannot complete user names. Solution: Add user name completion. (Dominique Pelle)
2012-08-02updated for version 7.3.621Bram Moolenaar
Problem: Compiler warnings on 64 bit windows. Solution: Add type casts. (Mike Williams)
2012-07-27updated for version 7.3.617Bram Moolenaar
Problem: Hang on completion. Solution: Skip over the space. (Yasuhiro Matsumoto)
2012-07-25updated for version 7.3.615Bram Moolenaar
Problem: Completion for a user command does not recognize backslash before a space. Solution: Recognize escaped characters. (Yasuhiro Matsumoto)
2012-07-10updated for version 7.3.600Bram Moolenaar
Problem: <f-args> is not expanded properly with DBCS encoding. Solution: Skip over character instead of byte. (Yukihiro Nakadaira)
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-06-06updated for version 7.3.545Bram Moolenaar
Problem: When closing a window or buffer autocommands may close it too, causing problems for where the autocommand was invoked from. Solution: Add the w_closing and b_closing flags. When set disallow ":q" and ":close" to prevent recursive closing.
2012-06-06updated for version 7.3.544Bram Moolenaar
Problem: There is no good way to close a quickfix window when closing the last ordinary window. Solution: Add the QuitPre autocommand.
2012-06-06updated for version 7.3.541Bram Moolenaar
Problem: When joining lines comment leaders need to be removed manually. Solution: Add the 'j' flag to 'formatoptions'. (Lech Lorens)
2012-04-30updated for version 7.3.514Bram Moolenaar
Problem: No completion for :history command. Solution: Add the completion and update the docs. Also fix ":behave" completion. (Dominique Pelle)
2012-02-12updated for version 7.3.442Bram Moolenaar
Problem: Still read modelines for ":doautocmd". Solution: Move check for <nomodeline> to separate function.
2012-01-26updated for version 7.3.419Bram Moolenaar
Problem: DBCS encoding in a user command does not always work. Solution: Skip over DBCS characters. (Yasuhiro Matsumoto)
2011-12-14updated for version 7.3.374Bram Moolenaar
Problem: ++encoding does not work properly. Solution: Recognize ++encoding before ++enc. (Charles Cooper)
2011-10-20updated for version 7.3.346Bram Moolenaar
Problem: It's hard to test netbeans commands. Solution: Process netbeans commands after :sleep. (Xavier de Gaye)
2011-09-30updated for version 7.3.329Bram Moolenaar
Problem: When skipping over code from ":for" to ":endfor" get an error for calling a dict function. (Yasuhiro Matsumoto) Solution: Ignore errors when skipping over :call command.
2011-09-21updated for version 7.3.320Bram Moolenaar
Problem: When a 0xa0 character is in a sourced file the error message for unrecognized command does not show the problem. Solution: Display 0xa0 as <a0>.
2011-07-20updated for version 7.3.257Bram Moolenaar
Problem: Not all completions are available to user commands. Solution: Add "color", "compiler", "file_in_path" and "locale". (Dominique Pelle)
2011-07-20updated for version 7.3.255Bram Moolenaar
Problem: When editing a file such as "File[2010-08-15].vim" an E16 error is given. (Manuel Stol) Solution: Don't give an error for failing to compile the regexp.
2011-06-13updated for version 7.3.217Bram Moolenaar
Problem: Inside an "if" a ":wincmd" causes problems. Solution: When skipping commands let ":wincmd" skip over its argument.
2011-05-25updated for version 7.3.200Bram Moolenaar
Problem: CTRL-D doesn't complete :lang. Solution: Add the missing part of the change. (Dominique Pelle)
2011-05-19updated for version 7.3.193Bram Moolenaar
Problem: In the command line window ":close" doesn't work properly. (Tony Mechelynck) Solution: Use Ctrl_C instead of K_IGNORE for cmdwin_result. (Jean-Rene David)
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-05-05updated for version 7.3.171Bram Moolenaar
Problem: When the clipboard isn't supported: ":yank*" gives a confusing error message. Solution: Specifically mention that the register name is invalid. (Jean-Rene David)
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-04-11updated for version 7.3.160Bram Moolenaar
Problem: Unsafe string copying. Solution: Use vim_strncpy() instead of strcpy(). Use vim_strcat() instead of strcat().
2011-03-03updated for version 7.3.138Bram Moolenaar
Problem: ":com" changes the multi-byte text of :echo. (Dimitar Dimitrov) Solution: Search for K_SPECIAL as a byte, not a character. (Ben Schmidt)
2011-01-17updated for version 7.3.100Bram Moolenaar
Problem: When using :normal v:count isn't set. Solution: Call normal_cmd() with toplevel set to TRUE.
2010-12-02updated for version 7.3.072Bram Moolenaar
Problem: Can't complete file names while ignoring case. Solution: Add 'wildignorecase'.
2010-11-24updated for version 7.3.065Bram Moolenaar
Problem: Can't get current line number in a source file. Solution: Add the <slnum> item, similar to <sfile>.
2010-11-16updated for version 7.3.056Bram Moolenaar
Problem: "getline" argument in do_cmdline() shadows global. Solution: Rename the argument. Files: src/ex_docmd.c
2010-11-10updated for version 7.3.054Bram Moolenaar
Problem: Can define a user command for :Print, but it doesn't work. (Aaron Thoma) Solution: Let user command :Print overrule the builtin command (Christian Brabandt) Disallow :X and :Next as a user defined command.
2010-10-13updated for version 7.3.025Bram Moolenaar
Problem: ":mksession" does not square brackets escape file name properly. Solution: Improve escapging of file names. (partly by Peter Odding)
2010-09-21updated for version 7.3.008Bram Moolenaar
Problem: 'cursorbind' is kept in places where 'scrollbind' is reset. Solution: Reset 'cursorbind'.
2010-08-16updated for version 7.3.002Bram Moolenaar
Problem: ":find" completion doesn't work when halfway an environment variable. (Dominique Pelle) Solution: Only use in-path completion when expanding file names. (Nazri Ramliy)
2010-08-07Fixed: on MS-Windows completion of shell commands didn't work.Bram Moolenaar
2010-07-31Support syntax and filetype completion for user commands. (Christian Brabandt)Bram Moolenaar
2010-07-29Add completion for ":ownsyntax" and improve completion for ":filetype".Bram Moolenaar
(Dominique Pelle)
2010-07-25Add completion for :setfiletype. (Dominique Pelle)Bram Moolenaar
2010-07-25Add completion for :lmap and :lunmap.Bram Moolenaar