summaryrefslogtreecommitdiffstats
path: root/src/ex_cmds.c
AgeCommit message (Collapse)Author
2016-03-15patch 7.4.1576v7.4.1576Bram Moolenaar
Problem: Write error of viminfo file is not handled properly. (Christian Neukirchen) Solution: Check the return value of fclose(). (closes #682)
2016-03-15patch 7.4.1570v7.4.1570Bram Moolenaar
Problem: There is no way to avoid the message when editing a file. Solution: Add the "F" flag to 'shortmess'. (Shougo, closes #686)
2016-03-15patch 7.4.1568v7.4.1568Bram Moolenaar
Problem: Using CTRL-] in help on option in parentheses doesn't work. Solution: Skip the "(" in "('". (Hirohito Higashi)
2016-03-14patch 7.4.1562v7.4.1562Bram Moolenaar
Problem: ":helptags ALL" crashes. (Lcd) Solution: Don't free twice.
2016-03-12patch 7.4.1551v7.4.1551Bram Moolenaar
Problem: Cannot generate help tags in all doc directories. Solution: Make ":helptags ALL" work.
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-06patch 7.4.1266v7.4.1266Bram Moolenaar
Problem: A BufAdd autocommand may cause an ml_get error (Christian Brabandt) Solution: Increment RedrawingDisabled earlier.
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-31patch 7.4.1220v7.4.1220Bram Moolenaar
Problem: Warnings for unused variables in tiny build. (Tony Mechelynck) Solution: Move declarations inside #ifdef. (Hirohito Higashi)
2016-01-30patch 7.4.1219v7.4.1219Bram Moolenaar
Problem: Build fails with +channel but without +float. Solution: Add #ifdef.
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.1196v7.4.1196Bram Moolenaar
Problem: Still using __ARGS. Solution: Remove __ARGS in several files. (script by Hirohito Higashi)
2016-01-20patch 7.4.1144v7.4.1144Bram Moolenaar
Problem: Can't build on several systems. Solution: Include float.h. (Christian Robinson, closes #570 #571)
2016-01-19patch 7.4.1143v7.4.1143Bram Moolenaar
Problem: Can't sort on floating point numbers. Solution: Add the "f" flag to ":sort". (Alex Jakushev) Also add the "f" flag to sort().
2016-01-18patch 7.4.1131v7.4.1131Bram Moolenaar
Problem: New lines in the viminfo file are dropped. Solution: Copy lines starting with "|". Fix that when using :rviminfo in a function global variables were restored as function-local variables.
2016-01-02patch 7.4.1027v7.4.1027Bram Moolenaar
Problem: No support for binary numbers. Solution: Add "bin" to nrformats. (Jason Schulz)
2015-12-31patch 7.4.1010v7.4.1010Bram Moolenaar
Problem: Some developers are unhappy while running tests. Solution: Add a test and some color.
2015-12-31patch 7.4.1009v7.4.1009Bram Moolenaar
Problem: There are still #ifdefs for ARCHIE. Solution: Remove references to ARCHIE, the code was removed in Vim 5.
2015-12-31patch 7.4.1008v7.4.1008Bram Moolenaar
Problem: The OS/2 code pollutes the source while nobody uses it these days. Solution: Drop the support for OS/2.
2015-12-31patch 7.4.1005v7.4.1005Bram Moolenaar
Problem: Vim users are not always happy. Solution: Make them happy.
2015-12-17patch 7.4.975v7.4.975Bram Moolenaar
Problem: Using ":sort" on a very big file sometimes causes text to be corrupted. (John Beckett) Solution: Copy the line into a buffer before calling ml_append().
2015-11-10patch 7.4.922v7.4.922Bram Moolenaar
Problem: Leaking memory with ":helpt {dir-not-exists}". Solution: Free dirname. (Dominique Pelle)
2015-11-02patch 7.4.906v7.4.906Bram Moolenaar
Problem: On MS-Windows the viminfo file is (always) given the hidden attribute. (raulnac) Solution: Check the hidden attribute in a different way. (Ken Takata)
2015-08-11patch 7.4.822v7.4.822Bram Moolenaar
Problem: More problems reported by coverity. Solution: Avoid the warnings. (Christian Brabandt)
2015-07-17patch 7.4.782v7.4.782Bram Moolenaar
Problem: Still a few problems with CTRL-A and CTRL-X in Visual mode. Solution: Fix the reported problems. (Christian Brabandt)
2015-05-04patch 7.4.716v7.4.716Bram Moolenaar
Problem: When using the 'c' flag of ":substitute" and selecting "a" or "l" at the prompt the flags are not remembered for ":&&". (Ingo Karkat) Solution: Save the flag values and restore them. (Hirohito Higashi)
2015-04-15patch 7.4.700v7.4.700Bram Moolenaar
Problem: Fold can't be opened after ":move". (Ein Brown) Solution: Delete the folding information and update it afterwards. (Christian Brabandt)
2015-03-31updated for version 7.4.684v7.4.684Bram Moolenaar
Problem: When starting several Vim instances in diff mode, the temp files used may not be unique. (Issue 353) Solution: Add an argument to vim_tempname() to keep the file.
2015-03-24updated for version 7.4.675v7.4.675Bram Moolenaar
Problem: When a FileReadPost autocommand moves the cursor inside a line it gets moved back. Solution: When checking whether an autocommand moved the cursor store the column as well. (Christian Brabandt)
2015-02-27updated for version 7.4.645v7.4.645Bram Moolenaar
Problem: When splitting the window in a BufAdd autocommand while still in the first, empty buffer the window count is wrong. Solution: Do not reset b_nwindows to zero and don't increment it.
2015-02-17updated for version 7.4.632v7.4.632Bram Moolenaar
Problem: 7.4.592 breaks the netrw plugin, because the autocommands are skipped. Solution: Roll back the change.
2015-01-27updated for version 7.4.596v7.4.596Bram Moolenaar
Problem: Tiny build doesn't compile. (Ike Devolder) Solution: Add #ifdef.
2015-01-27updated for version 7.4.592v7.4.592Bram Moolenaar
Problem: When doing ":e foobar" when already editing "foobar" and 'buftype' is "nofile" the buffer is cleared. (Xavier de Gaye) Solution: Do no clear the buffer.
2014-12-13updated for version 7.4.543v7.4.543Bram Moolenaar
Problem: Since patch 7.4.232 "1,3s/\n//" joins two lines instead of three. (Eliseo Martínez) Issue 287 Solution: Correct the line count. (Christian Brabandt) Also set the last used search pattern.
2014-11-30updated for version 7.4.538v7.4.538Bram Moolenaar
Problem: Tests fail with small features plus Python. Solution: Disallow weird combination of options. Do not set "fdm" when folding is disabled.
2014-11-12updated for version 7.4.515v7.4.515Bram Moolenaar
Problem: In a help buffer the global 'foldmethod' is used. (Paul Marshall) Solution: Reset 'foldmethod' when starting to edit a help file. Move the code to a separate function.
2014-09-19updated for version 7.4.453v7.4.453Bram Moolenaar
Problem: Still can't build with tiny features. Solution: Add #ifdef.
2014-09-19updated for version 7.4.452v7.4.452Bram Moolenaar
Problem: Can't build with tiny features. (Tony Mechelynck) Solution: Use "return" instead of "break".
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-08-29updated for version 7.4.418v7.4.418Bram Moolenaar
Problem: When leaving ":append" the cursor shape is like in Insert mode. (Jacob Niehus) Solution: Do not have State set to INSERT when calling getline().
2014-08-06updated for version 7.4.396v7.4.396Bram Moolenaar
Problem: When 'clipboard' is "unnamed", :g/pat/d is very slow. (Praful) Solution: Only set the clipboard after the last delete. (Christian Brabandt)
2014-07-09updated for version 7.4.364v7.4.364Bram Moolenaar
Problem: When the viminfo file can't be renamed there is no error message. (Vladimir Berezhnoy) Solution: Check for the rename to fail.
2014-05-22updated for version 7.4.297v7.4.297Bram Moolenaar
Problem: Memory leak from result of get_isolated_shell_name(). Solution: Free the memory. (Dominique Pelle)
2014-05-09updated for version 7.4.283v7.4.283Bram Moolenaar
Problem: Compiler warning about unused variable. (Charles Cooper) Solution: Move the variable inside the #if block.
2014-05-07updated for version 7.4.276v7.4.276Bram Moolenaar
Problem: The fish shell is not supported. Solution: Use begin/end instead of () for fish. (Andy Russell)
2014-05-07updated for version 7.4.275v7.4.275Bram Moolenaar
Problem: When changing the type of a sign that hasn't been placed ther is no error message. Solution: Add an error message. (Christian Brabandt)
2014-04-29updated for version 7.4.267v7.4.267Bram Moolenaar
Problem: The '[ mark is in the wrong position after "gq". (Ingo Karkat) Solution: Add the setmark argument to do_join(). (Christian Brabandt)
2014-04-06updated for version 7.4.251v7.4.251Bram Moolenaar
Problem: Crash when BufAdd autocommand wipes out the buffer. Solution: Check for buffer to still be valid. Postpone freeing the buffer structure. (Hirohito Higashi)
2014-04-04updated for version 7.4.245v7.4.245Bram Moolenaar
Problem: Crash for "vim -u NONE -N -c '&&'". Solution: Check for the pattern to be NULL. (Dominique Pelle)
2014-04-01updated for version 7.4.232v7.4.232Bram Moolenaar
Problem: ":%s/\n//" uses a lot of memory. (Aidan Marlin) Solution: Turn this into a join command. (Christian Brabandt)