summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2014-08-16updated for version 7.4.408Bram Moolenaar
Problem: Visual block insert breaks a multi-byte character. Solution: Calculate the position properly. (Yasuhiro Matsumoto)
2014-08-16updated for version 7.4.407Bram Moolenaar
Problem: Inserting text for Visual block mode, with cursor movement, repeats the wrong text. (Aleksandar Ivanov) Solution: Reset the update_Insstart_orig flag. (Christian Brabandt)
2014-08-16updated for version 7.4.406Bram Moolenaar
Problem: Test 72 and 100 fail on MS-Windows. Solution: Set fileformat to unix in the tests. (Taro Muraoka)
2014-08-16updated for version 7.4.405Bram Moolenaar
Problem: Screen updating is slow when using matches. Solution: Do not use the ">=" as in patch 7.4.362, check the lnum.
2014-08-13updated for version 7.4.404Bram Moolenaar
Problem: Windows 64 bit compiler warnings. Solution: Add type casts. (Mike Williams)
2014-08-13updated for version 7.4.403Bram Moolenaar
Problem: Valgrind reports errors when running test 72. (Dominique Pelle) Solution: Reset the local 'cryptmethod' option before storing the seed. Set the seed in the memfile even when there is no block0 yet.
2014-08-12updated for version 7.4.402Bram Moolenaar
Problem: Test 72 crashes under certain conditions. (Kazunobu Kuriyama) Solution: Clear the whole bufinfo_T early.
2014-08-10updated for version 7.4.401Bram Moolenaar
Problem: Can't build on MS-Windows. Solution: Include the new files in all the Makefiles.
2014-08-10updated for version 7.4.400Bram Moolenaar
Problem: List of distributed files is incomplete. Solution: Add recently added files.
2014-08-10updated for version 7.4.399Bram Moolenaar
Problem: Encryption implementation is messy. Blowfish encryption has a weakness. Solution: Refactor the encryption, store the state in an allocated struct instead of using a save/restore mechanism. Introduce the "blowfish2" method, which does not have the weakness and encrypts the whole undo file. (largely by David Leadbeater)
2014-08-07updated for version 7.4.398Bram Moolenaar
Problem: Gcc error for the argument of InterlockedIncrement() and InterlockedDecrement(). (Axel Bender) Solution: Remove "unsigned" from the cRefCount_ declaration.
2014-08-06updated for version 7.4.397Bram Moolenaar
Problem: Matchparen only uses the topmost syntax item. Solution: Go through the syntax stack to find items. (James McCoy) Also use getcurpos() when possible.
2014-08-06updated for version 7.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-08-06updated for version 7.4.395Bram Moolenaar
Problem: C indent is wrong below an if with wrapped condition followed by curly braces. (Trevor Powell) Solution: Make a copy of tryposBrace.
2014-08-06updated for version 7.4.394Bram Moolenaar
Problem: When using DirectX last italic character is incomplete. Solution: Add one to the number of cells. (Ken Takata)
2014-08-06updated for version 7.4.393Bram Moolenaar
Problem: Text drawing on newer MS-Windows systems is suboptimal. Some multi-byte characters are not displayed, even though the same font in Notepad can display them. (Srinath Avadhanula) Solution: Add the 'renderoptions' option to enable Direct-X drawing. (Taro Muraoka)
2014-08-06updated for version 7.4.392Bram Moolenaar
Problem: Not easy to detect type of command line window. Solution: Add the getcmdwintype() function. (Jacob Niehus)
2014-08-06updated for version 7.4.391Bram Moolenaar
Problem: No 'cursorline' highlighting when the cursor is on a line with diff highlighting. (Benjamin Fritz) Solution: Combine the highlight attributes. (Christian Brabandt)
2014-08-06updated for version 7.4.390Bram Moolenaar
Problem: Advancing pointer over end of a string. Solution: Init quote character to -1 instead of zero. (Dominique Pelle)
2014-07-30updated for version 7.4.389Bram Moolenaar
Problem: Still sometimes Vim enters Replace mode when starting up. Solution: Use a different solution in detecting the termresponse and location response. (Hayaki Saito)
2014-07-30updated for version 7.4.388Bram Moolenaar
Problem: With 'linebreak' set and 'list' unset a Tab is not counted properly. (Kent Sibilev) Solution: Check the 'list' option. (Christian Brabandt)
2014-07-30updated for version 7.4.387Bram Moolenaar
Problem: "4gro" replaces one character then executes "ooo". (Urtica Dioica) Solution: Write the ESC in the second stuff buffer.
2014-07-30updated for version 7.4.386Bram Moolenaar
Problem: When splitting a window the changelist position is wrong. Solution: Copy the changelist position. (Jacob Niehus)
2014-07-30updated for version 7.4.385Bram Moolenaar
Problem: When building with tiny or small features building the .mo files fails. Solution: In autoconf do not setup for building the .mo files when it would fail.
2014-07-30updated for version 7.4.384Bram Moolenaar
Problem: Test 102 fails when compiled with small features. Solution: Source small.vim. (Jacob Niehus)
2014-07-23updated for version 7.4.383Bram Moolenaar
Problem: Bad interaction between preview window and omnifunc. Solution: Avoid redrawing the status line. (Hirohito Higashi)
2014-07-23updated for version 7.4.382Bram Moolenaar
Problem: Mapping characters may not work after typing Esc in Insert mode. Solution: Fix the noremap flags for inserted characters. (Jacob Niehus)
2014-07-23updated for version 7.4.381Bram Moolenaar
Problem: Get u_undo error when backspacing in Insert mode deletes more than one line break. (Ayberk Ozgur) Solution: Also decrement Insstart.lnum.
2014-07-23updated for version 7.4.380Bram Moolenaar
Problem: Loading python may cause Vim to exit. Solution: Avoid loading the "site" module. (Taro Muraoka)
2014-07-23updated for version 7.4.379Bram Moolenaar
Problem: Accessing freed memory after using setqflist(list, 'r'). (Lcd) Solution: Reset qf_index.
2014-07-23updated for version 7.4.378Bram Moolenaar
Problem: Title of quickfist list is not kept for setqflist(list, 'r'). Solution: Keep the title. Add a test. (Lcd)
2014-07-23updated for version 7.4.377Bram Moolenaar
Problem: When 'equalalways' is set a split may report "no room" even though there is plenty of room. Solution: Compute the available room properly. (Yukihiro Nakadaira)
2014-07-23updated for version 7.4.376Bram Moolenaar
Problem: Popup menu flickers too much. Solution: Remove the forced redraw. (Hirohito Higashi)
2014-07-23updated for version 7.4.375Bram Moolenaar
Problem: Test 63 fails when run with GUI-only Vim. Solution: Add guibg attributes. (suggested by Mike Soyka)
2014-07-23updated for version 7.4.374Bram Moolenaar
Problem: Character after "fb" command not mapped if it might be a composing character. Solution: Don't disable mapping when looking for a composing character. (Jacob Niehus)
2014-07-16updated for version 7.4.373Bram Moolenaar
Problem: Compiler warning for unused argument and unused variable. Solution: Add UNUSED. Move variable inside #ifdef.
2014-07-16updated for version 7.4.372Bram Moolenaar
Problem: When 'winminheight' is zero there might not be one line for the current window. Solution: Change the size computations. (Yukihiro Nakadaira)
2014-07-16updated for version 7.4.371Bram Moolenaar
Problem: When 'linebreak' is set control characters are not correctly displayed. (Kimmy Lindvall) Solution: Set n_extra. (Christian Brabandt)
2014-07-16updated for version 7.4.370Bram Moolenaar
Problem: Linebreak test fails when encoding is not utf-8. (Danek Duvall) Solution: Split the test in a single byte one and a utf-8 one. (Christian Brabandt)
2014-07-16updated for version 7.4.369Bram Moolenaar
Problem: Using freed memory when exiting while compiled with EXITFREE. Solution: Set curwin to NULL and check for that. (Dominique Pelle)
2014-07-16updated for version 7.4.368Bram Moolenaar
Problem: Restoring the window sizes after closing the command line window doesn't work properly if there are nested splits. Solution: Restore the sizes twice. (Hirohito Higashi)
2014-07-16updated for version 7.4.367Bram Moolenaar
Problem: Other solution for redrawing after completion. Solution: Schedule a window redraw instead of just clearing the command line. (Jacob Niehus)
2014-07-16updated for version 7.4.366Bram Moolenaar
Problem: Can't run the linebreak test on MS-Windows. Solution: Fix the output file name. (Taro Muraoka)
2014-07-16updated for version 7.4.365Bram Moolenaar
Problem: Crash when using ":botright split" when there isn't much space. Solution: Add a check for the minimum width/height. (Yukihiro Nakadaira)
2014-07-09updated for version 7.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-07-09updated for version 7.4.363Bram Moolenaar
Problem: In Windows console typing 0xCE does not work. Solution: Convert 0xCE to K_NUL 3. (Nobuhiro Takasaki et al.)
2014-07-09updated for version 7.4.362Bram Moolenaar
Problem: When matchaddpos() uses a length smaller than the number of bytes in the (last) character the highlight continues until the end of the line. Solution: Change condition from equal to larger-or-equal.
2014-07-09updated for version 7.4.361Bram Moolenaar
Problem: Lots of flickering when filling the preview window for 'omnifunc'. Solution: Disable redrawing. (Hirohito Higashi)
2014-07-09updated for version 7.4.360Bram Moolenaar
Problem: In a regexp pattern a "$" followed by \v or \V is not seen as the end-of-line. Solution: Handle the situation. (Ozaki Kiichi)
2014-07-09updated for version 7.4.359Bram Moolenaar
Problem: When 'ttymouse' is set to 'uxterm' the xterm version is not requested. (Tomas Janousek) Solution: Do not mark uxterm as a conflict mouse and add resume_get_esc_sequence().