summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* updated for version 7.4.399v7.4.399Bram Moolenaar2014-08-1027-978/+1781
| | | | | | | | | 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)
* updated for version 7.4.398v7.4.398Bram Moolenaar2014-08-072-1/+3
| | | | | | Problem: Gcc error for the argument of InterlockedIncrement() and InterlockedDecrement(). (Axel Bender) Solution: Remove "unsigned" from the cRefCount_ declaration.
* updated for version 7.4.397v7.4.397Bram Moolenaar2014-08-062-3/+12
| | | | | | Problem: Matchparen only uses the topmost syntax item. Solution: Go through the syntax stack to find items. (James McCoy) Also use getcurpos() when possible.
* updated for version 7.4.396v7.4.396Bram Moolenaar2014-08-068-6/+94
| | | | | Problem: When 'clipboard' is "unnamed", :g/pat/d is very slow. (Praful) Solution: Only set the clipboard after the last delete. (Christian Brabandt)
* updated for version 7.4.395v7.4.395Bram Moolenaar2014-08-064-0/+23
| | | | | | Problem: C indent is wrong below an if with wrapped condition followed by curly braces. (Trevor Powell) Solution: Make a copy of tryposBrace.
* updated for version 7.4.394v7.4.394Bram Moolenaar2014-08-062-1/+4
| | | | | Problem: When using DirectX last italic character is incomplete. Solution: Add one to the number of cells. (Ken Takata)
* updated for version 7.4.393v7.4.393Bram Moolenaar2014-08-0616-23/+1390
| | | | | | | | 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)
* updated for version 7.4.392v7.4.392Bram Moolenaar2014-08-062-0/+24
| | | | | Problem: Not easy to detect type of command line window. Solution: Add the getcmdwintype() function. (Jacob Niehus)
* updated for version 7.4.391v7.4.391Bram Moolenaar2014-08-062-3/+18
| | | | | | Problem: No 'cursorline' highlighting when the cursor is on a line with diff highlighting. (Benjamin Fritz) Solution: Combine the highlight attributes. (Christian Brabandt)
* updated for version 7.4.390v7.4.390Bram Moolenaar2014-08-062-1/+3
| | | | | Problem: Advancing pointer over end of a string. Solution: Init quote character to -1 instead of zero. (Dominique Pelle)
* updated for version 7.4.389v7.4.389Bram Moolenaar2014-07-305-108/+61
| | | | | | Problem: Still sometimes Vim enters Replace mode when starting up. Solution: Use a different solution in detecting the termresponse and location response. (Hayaki Saito)
* updated for version 7.4.388v7.4.388Bram Moolenaar2014-07-304-1/+21
| | | | | | Problem: With 'linebreak' set and 'list' unset a Tab is not counted properly. (Kent Sibilev) Solution: Check the 'list' option. (Christian Brabandt)
* updated for version 7.4.387v7.4.387Bram Moolenaar2014-07-3012-1/+39
| | | | | Problem: "4gro" replaces one character then executes "ooo". (Urtica Dioica) Solution: Write the ESC in the second stuff buffer.
* updated for version 7.4.386v7.4.386Bram Moolenaar2014-07-3010-1/+38
| | | | | Problem: When splitting a window the changelist position is wrong. Solution: Copy the changelist position. (Jacob Niehus)
* updated for version 7.4.385v7.4.385Bram Moolenaar2014-07-303-2/+4
| | | | | | | 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.
* updated for version 7.4.384v7.4.384Bram Moolenaar2014-07-302-0/+3
| | | | | Problem: Test 102 fails when compiled with small features. Solution: Source small.vim. (Jacob Niehus)
* Update runtime files. Add vroom file support.Bram Moolenaar2014-07-2610-33/+189
|
* updated for version 7.4.383v7.4.383Bram Moolenaar2014-07-232-0/+8
| | | | | Problem: Bad interaction between preview window and omnifunc. Solution: Avoid redrawing the status line. (Hirohito Higashi)
* updated for version 7.4.382v7.4.382Bram Moolenaar2014-07-232-0/+7
| | | | | Problem: Mapping characters may not work after typing Esc in Insert mode. Solution: Fix the noremap flags for inserted characters. (Jacob Niehus)
* updated for version 7.4.381v7.4.381Bram Moolenaar2014-07-232-0/+3
| | | | | | Problem: Get u_undo error when backspacing in Insert mode deletes more than one line break. (Ayberk Ozgur) Solution: Also decrement Insstart.lnum.
* updated for version 7.4.380v7.4.380Bram Moolenaar2014-07-232-0/+33
| | | | | Problem: Loading python may cause Vim to exit. Solution: Avoid loading the "site" module. (Taro Muraoka)
* updated for version 7.4.379v7.4.379Bram Moolenaar2014-07-232-0/+3
| | | | | Problem: Accessing freed memory after using setqflist(list, 'r'). (Lcd) Solution: Reset qf_index.
* updated for version 7.4.378v7.4.378Bram Moolenaar2014-07-2310-15/+56
| | | | | Problem: Title of quickfist list is not kept for setqflist(list, 'r'). Solution: Keep the title. Add a test. (Lcd)
* updated for version 7.4.377v7.4.377Bram Moolenaar2014-07-232-3/+39
| | | | | | 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)
* updated for version 7.4.376v7.4.376Bram Moolenaar2014-07-232-2/+4
| | | | | Problem: Popup menu flickers too much. Solution: Remove the forced redraw. (Hirohito Higashi)
* updated for version 7.4.375v7.4.375Bram Moolenaar2014-07-232-3/+5
| | | | | Problem: Test 63 fails when run with GUI-only Vim. Solution: Add guibg attributes. (suggested by Mike Soyka)
* updated for version 7.4.374v7.4.374Bram Moolenaar2014-07-232-1/+7
| | | | | | | 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)
* Update runtime files. Make matchparen plugin backwards compatible.Bram Moolenaar2014-07-1912-24/+133
| | | | Add json filetype.
* updated for version 7.4.373v7.4.373Bram Moolenaar2014-07-163-4/+7
| | | | | Problem: Compiler warning for unused argument and unused variable. Solution: Add UNUSED. Move variable inside #ifdef.
* updated for version 7.4.372v7.4.372Bram Moolenaar2014-07-162-20/+24
| | | | | | Problem: When 'winminheight' is zero there might not be one line for the current window. Solution: Change the size computations. (Yukihiro Nakadaira)
* updated for version 7.4.371v7.4.371Bram Moolenaar2014-07-162-0/+4
| | | | | | Problem: When 'linebreak' is set control characters are not correctly displayed. (Kimmy Lindvall) Solution: Set n_extra. (Christian Brabandt)
* updated for version 7.4.370v7.4.370Bram Moolenaar2014-07-1611-32/+74
| | | | | | 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)
* updated for version 7.4.369v7.4.369Bram Moolenaar2014-07-163-2/+8
| | | | | Problem: Using freed memory when exiting while compiled with EXITFREE. Solution: Set curwin to NULL and check for that. (Dominique Pelle)
* updated for version 7.4.368v7.4.368Bram Moolenaar2014-07-162-5/+12
| | | | | | 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)
* updated for version 7.4.367v7.4.367Bram Moolenaar2014-07-162-1/+7
| | | | | | Problem: Other solution for redrawing after completion. Solution: Schedule a window redraw instead of just clearing the command line. (Jacob Niehus)
* updated for version 7.4.366v7.4.366Bram Moolenaar2014-07-162-1/+3
| | | | | Problem: Can't run the linebreak test on MS-Windows. Solution: Fix the output file name. (Taro Muraoka)
* updated for version 7.4.365v7.4.365Bram Moolenaar2014-07-162-4/+18
| | | | | Problem: Crash when using ":botright split" when there isn't much space. Solution: Add a check for the minimum width/height. (Yukihiro Nakadaira)
* Updated runtime files.Bram Moolenaar2014-07-1022-52/+636
|
* updated for version 7.4.364v7.4.364Bram Moolenaar2014-07-092-5/+10
| | | | | | Problem: When the viminfo file can't be renamed there is no error message. (Vladimir Berezhnoy) Solution: Check for the rename to fail.
* updated for version 7.4.363v7.4.363Bram Moolenaar2014-07-093-4/+39
| | | | | Problem: In Windows console typing 0xCE does not work. Solution: Convert 0xCE to K_NUL 3. (Nobuhiro Takasaki et al.)
* updated for version 7.4.362v7.4.362Bram Moolenaar2014-07-092-1/+3
| | | | | | | 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.
* updated for version 7.4.361v7.4.361Bram Moolenaar2014-07-092-0/+4
| | | | | Problem: Lots of flickering when filling the preview window for 'omnifunc'. Solution: Disable redrawing. (Hirohito Higashi)
* updated for version 7.4.360v7.4.360Bram Moolenaar2014-07-092-2/+14
| | | | | | 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)
* updated for version 7.4.359v7.4.359Bram Moolenaar2014-07-094-4/+18
| | | | | | | 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().
* updated for version 7.4.358v7.4.358Bram Moolenaar2014-07-092-16/+36
| | | | | | Problem: Sort is not always stable. Solution: Add an index instead of relying on the pointer to remain the same. Idea by Jun Takimoto.
* updated for version 7.4.357v7.4.357Bram Moolenaar2014-07-092-2/+3
| | | | | Problem: After completion some characters are not redrawn. Solution: Clear the command line unconditionally. (Jacob Niehus)
* updated for version 7.4.356v7.4.356Bram Moolenaar2014-07-092-6/+9
| | | | | Problem: Mercurial does not ignore memfile_test. (Daniel Hahler) Solution: Add memfile_test to ignored files, remove trailing spaces.
* Updated runtime files. Overhauled HTML indent script.Bram Moolenaar2014-07-047-433/+936
|
* updated for version 7.4.355v7.4.355Bram Moolenaar2014-07-034-87/+228
| | | | | Problem: Several problems with Javascript indenting. Solution: Improve Javascript indenting.
* updated for version 7.4.354v7.4.354Bram Moolenaar2014-07-032-1/+3
| | | | | Problem: Compiler warning. Solution: Change NUL to NULL. (Ken Takata)