summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2015-07-28patch 7.4.801v7.4.801Bram Moolenaar
Problem: Test for ":diffoff" doesn't catch all potential problems. Solution: Add a :diffthis and a :diffoff command. (Olaf Dabrunz)
2015-07-28patch 7.4.800v7.4.800Bram Moolenaar
Problem: Using freed memory when triggering CmdUndefined autocommands. Solution: Set pointer to NULL. (Dominique Pelle)
2015-07-28patch 7.4.799v7.4.799Bram Moolenaar
Problem: Accessing memory before an allocated block. Solution: Check for not going before the start of a pattern. (Dominique Pelle)
2015-07-28patch 7.4.798v7.4.798Bram Moolenaar
Problem: Repeating a change in Visual mode does not work as expected. (Urtica Dioica) Solution: Make redo in Visual mode work better. (Christian Brabandt)
2015-07-25patch 7.4.797v7.4.797Bram Moolenaar
Problem: Crash when using more lines for the command line than 'maxcombine'. Solution: Use the correct array index. Also, do not try redrawing when exiting. And use screen_Columns instead of Columns.
2015-07-22patch 7.4.796v7.4.796Bram Moolenaar
Problem: Warning from 64 bit compiler. Solution: Add type cast. (Mike Williams)
2015-07-22Correct optwin script, update PHP complete.Bram Moolenaar
2015-07-22patch 7.4.795v7.4.795Bram Moolenaar
Problem: The 'fixeol' option is not copied to a new window. Solution: Copy the option value. (Yasuhiro Matsumoto)
2015-07-21patch 7.4.794v7.4.794Bram Moolenaar
Problem: Visual Studio 2015 is not recognized. Solution: Add the version numbers to the makefile. (Taro Muraoka)
2015-07-21Updated and new runtime files.Bram Moolenaar
2015-07-21patch 7.4.793v7.4.793Bram Moolenaar
Problem: Can't specify when not to ring the bell. Solution: Add the 'belloff' option. (Christian Brabandt)
2015-07-21patch 7.4.792v7.4.792Bram Moolenaar
Problem: Can only conceal text by defining syntax items. Solution: Use matchadd() to define concealing. (Christian Brabandt)
2015-07-21patch 7.4.791v7.4.791Bram Moolenaar
Problem: The buffer list can be very long. Solution: Add an argument to ":ls" to specify the type of buffer to list. (Marcin Szamotulski)
2015-07-21patch 7.4.790v7.4.790Bram Moolenaar
Problem: Test fails when the autochdir feature is not available. Test output contains the test script. Solution: Check for the autochdir feature. (Kazunobu Kuriyama) Only write the relevant test output.
2015-07-19patch 7.4.789v7.4.789Bram Moolenaar
Problem: Using freed memory and crash. (Dominique Pellej) Solution: Correct use of pointers. (Hirohito Higashi)
2015-07-17patch 7.4.788v7.4.788Bram Moolenaar
Problem: Can't build without the crypt feature. (John Marriott) Solution: Add #ifdef's.
2015-07-17patch 7.4.787v7.4.787Bram Moolenaar
Problem: snprintf() isn't available everywhere. Solution: Use vim_snprintf(). (Ken Takata)
2015-07-17patch 7.4.786v7.4.786Bram Moolenaar
Problem: It is not possible for a plugin to adjust to a changed setting. Solution: Add the OptionSet autocommand event. (Christian Brabandt)
2015-07-17patch 7.4.785v7.4.785Bram Moolenaar
Problem: On some systems automatically adding the missing EOL causes problems. Setting 'binary' has too many side effects. Solution: Add the 'fixeol' option, default on. (Pavel Samarkin)
2015-07-17patch 7.4.784v7.4.784Bram Moolenaar
Problem: Using both "noinsert" and "noselect" in 'completeopt' does not work properly. Solution: Change the ins_complete() calls. (Ozaki Kiichi)
2015-07-17patch 7.4.783v7.4.783Bram Moolenaar
Problem: copy_chars() and copy_spaces() are inefficient. Solution: Use memset() instead. (Dominique Pelle)
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-07-12patch 7.4.781v7.4.781Bram Moolenaar
Problem: line2byte() returns one less when 'bin' and 'noeol' are set. Solution: Only adjust the size for the last line. (Rob Wu)
2015-07-12patch 7.4.780v7.4.780Bram Moolenaar
Problem: Compiler complains about uninitialized variable and clobbered variables. Solution: Add Initialization. Make variables static.
2015-07-12patch 7.4.779v7.4.779Bram Moolenaar
Problem: Using CTRL-A in a line without a number moves the cursor. May cause a crash when at the start of the line. (Urtica Dioica) Solution: Do not move the cursor if no number was changed.
2015-07-10patch 7.4.778v7.4.778Bram Moolenaar
Problem: Coverity warns for uninitialized variable. Solution: Change condition of assignment.
2015-07-10Updated runtime files.Bram Moolenaar
2015-07-10patch 7.4.777v7.4.777Bram Moolenaar
Problem: The README file doesn't look nice on github. Solution: Add a markdown version of the README file.
2015-07-10patch 7.4.776v7.4.776Bram Moolenaar
Problem: Equivalence class for 'd' does not work correctly. Solution: Fix 0x1e0f and 0x1d0b. (Dominique Pelle)
2015-07-10Add files missing from patch 7.4.771.Bram Moolenaar
2015-07-10patch 7.4.775v7.4.775Bram Moolenaar
Problem: It is not possible to avoid using the first item of completion. Solution: Add the "noinsert" and "noselect" values to 'completeopt'. (Shougo Matsu)
2015-07-10patch 7.4.774v7.4.774Bram Moolenaar
Problem: When using the CompleteDone autocommand event it's difficult to get to the completed items. Solution: Add the v:completed_items variable. (Shougo Matsu)
2015-07-10patch 7.4.773v7.4.773Bram Moolenaar
Problem: 'langmap' is used in command-line mode when checking for mappings. Issue 376. Solution: Do not use 'langmap' in command-line mode. (Larry Velazquez)
2015-07-10patch 7.4.772v7.4.772Bram Moolenaar
Problem: Racket 6.2 is not supported on MS-Windows. Solution: Check for the "racket" subdirectory. (Weiyong Mao)
2015-07-10patch 7.4.771v7.4.771Bram Moolenaar
Problem: Search does not handle multi-byte character at the start position correctly. Solution: Take byte size of character into account. (Yukihiro Nakadaira)
2015-07-10patch 7.4.770v7.4.770Bram Moolenaar
Problem: Background color response with transparency is not ignored. Solution: Change the way escape sequences are recognized. (partly by Hirohito Higashi)
2015-07-04patch 7.4.769v7.4.769Bram Moolenaar
Problem: Behavior of :diffoff is not tested. Solution: Add a bit of testing. (Olaf Dabrunz)
2015-07-03patch 7.4.768v7.4.768Bram Moolenaar
Problem: :diffoff only works properly once. Solution: Also make :diffoff work when used a second time. (Olaf Dabrunz)
2015-07-03patch 7.4.767v7.4.767Bram Moolenaar
Problem: --remote-tab-silent can fail on MS-Windows. Solution: Use single quotes to avoid problems with backslashes. (Idea by Weiyong Mao)
2015-07-03patch 7.4.766v7.4.766Bram Moolenaar
Problem: Background color check does not work on Tera Term. Solution: Also recognize ST as a termination character. (Hirohito Higashi)
2015-07-03patch 7.4.765v7.4.765Bram Moolenaar
Problem: CTRL-A and CTRL-X in Visual mode do not always work well. Solution: Improvements for increment and decrement. (Christian Brabandt)
2015-06-28patch 7.4.764v7.4.764Bram Moolenaar
Problem: test_increment fails on MS-Windows. (Ken Takata) Solution: Clear Visual mappings. (Taro Muraoka)
2015-06-27patch 7.4.763v7.4.763Bram Moolenaar
Problem: Building with Lua 5.1 doesn't work. Solution: Define lua_replace and lua_remove. (KF Leong)
2015-06-27patch 7.4.762v7.4.762Bram Moolenaar
Problem: Comment for may_req_bg_color() is wrong. (Christ van Willegen) Solution: Rewrite the comment.
2015-06-26Update help files.Bram Moolenaar
2015-06-25patch 7.4.761v7.4.761Bram Moolenaar
Problem: The request-background termcode implementation is incomplete. Solution: Add the missing pieces.
2015-06-25patch 7.4.760v7.4.760Bram Moolenaar
Problem: Spelling mistakes are not displayed after ":syn spell". Solution: Force a redraw after ":syn spell" command. (Christian Brabandt)
2015-06-25patch 7.4.759v7.4.759Bram Moolenaar
Problem: Building with Lua 5.3 doesn't work, symbols have changed. Solution: Use the new names for the new version. (Felix Schnizlein)
2015-06-25patch 7.4.758v7.4.758Bram Moolenaar
Problem: When 'conceallevel' is 1 and quitting the command-line window with CTRL-C the first character ':' is erased. Solution: Reset 'conceallevel' in the command-line window. (Hirohito Higashi)
2015-06-25patch 7.4.757v7.4.757Bram Moolenaar
Problem: Cannot detect the background color of a terminal. Solution: Add T_RBG to request the background color if possible. (Lubomir Rintel)