Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-01-23 | updated for version 7.3.776 | Bram Moolenaar | |
Problem: ml_get error when searching, caused by curwin not matching curbuf. Solution: Avoid changing curbuf. (Lech Lorens) | |||
2012-10-21 | updated for version 7.3.706 | Bram Moolenaar | |
Problem: Can't build Motif version. Solution: Fix wrongly named variable. (Ike Devolder) | |||
2012-10-21 | updated for version 7.3.697 | Bram Moolenaar | |
Problem: Leaking resources when setting GUI font. Solution: Free the font. (Ken Takata) | |||
2012-07-19 | updated for version 7.3.607 | Bram Moolenaar | |
Problem: With an 8 color terminal the selected menu item is black on black, because darkGrey as bg is the same as black. Solution: Swap fg and bg colors. (James McCoy) | |||
2012-06-01 | updated for version 7.3.532 | Bram Moolenaar | |
Problem: Compiler warning from Clang. Solution: Use a different way to point inside a string. (Dominique Pelle) | |||
2012-03-23 | updated for version 7.3.479 | Bram Moolenaar | |
Problem: When 'cursorline' is set the line number highlighting can't be set separately. Solution: Add "CursorLineNr". (Howard Buchholz) | |||
2012-03-16 | updated for version 7.3.475 | Bram Moolenaar | |
Problem: In a terminal with few colors the omnicomplete menu may be hard to see when using the default colors. Solution: Use more explicit colors. (suggested by Alex Henrie) | |||
2012-01-10 | updated for version 7.3.400 | Bram Moolenaar | |
Problem: Compiler warnings for shadowed variables. Solution: Remove or rename the variables. | |||
2011-06-19 | updated for version 7.3.226 | Bram Moolenaar | |
Problem: On a 64 bit system "syn sync fromstart" is very slow. (Bjorn Steinbrink) Solution: Store the state when starting to parse from the first line. | |||
2011-05-25 | updated for version 7.3.205 | Bram Moolenaar | |
Problem: Syntax "extend" doesn't work correctly. Solution: Avoid calling check_state_ends() recursively (Ben Schmidt) | |||
2011-05-19 | updated for version 7.3.190 | Bram Moolenaar | |
Problem: When there is a "containedin" syntax argument highlighting may be wrong. (Radek) Solution: Reset current_next_list. (Ben Schmidt) | |||
2011-04-11 | updated for version 7.3.160 | Bram Moolenaar | |
Problem: Unsafe string copying. Solution: Use vim_strncpy() instead of strcpy(). Use vim_strcat() instead of strcat(). | |||
2011-04-02 | updated for version 7.3.154 | Bram Moolenaar | |
Problem: Can't compile with tiny features. (Tony Mechelynck) Solution: Move #define outside of #ifdef. | |||
2011-04-01 | updated for version 7.3.148 | Bram Moolenaar | |
Problem: A syntax file with a huge number of items or clusters causes weird behavior, a hang or a crash. (Yukihiro Nakadaira) Solution: Check running out of IDs. (partly by Ben Schmidt) | |||
2011-01-22 | updated for version 7.3.104 | Bram Moolenaar | |
Problem: Conceal: using Tab for cchar causes problems. (ZyX) Solution: Do not accept a control character for cchar. | |||
2010-09-29 | updated for version 7.3.017 | Bram Moolenaar | |
Problem: smatch reports errors. Solution: Fix the reported errors. (Dominique Pelle) | |||
2010-08-08 | Remove unused code. | Bram Moolenaar | |
2010-07-28 | Fix: concealed regions didn't get redrawn correctly when moving the cursor | Bram Moolenaar | |
through them. | |||
2010-07-27 | Fix for "concealends". (Vince Negri) | Bram Moolenaar | |
2010-07-25 | Add the synconcealed() function and use it for :TOhtml. (Benjamin Fritz) | Bram Moolenaar | |
2010-07-24 | Give each syntax item a sequence number, so that we know when it starts and | Bram Moolenaar | |
can show the 'cchar' for each of them. | |||
2010-07-22 | For conceal mode: when two different syntax items follow each other, show the | Bram Moolenaar | |
replacement character for both. | |||
2010-07-14 | Allow synIDattr() getting GUI attributes when build without GUI. | Bram Moolenaar | |
(Matt Wozniski) | |||
2010-07-14 | Added 'colorcolumn' option. Partly by Gregor Uhlenheuer. | Bram Moolenaar | |
2010-07-14 | Support completion for ":find". (Nazri Ramliy) | Bram Moolenaar | |
Cleanup white space. | |||
2010-06-26 | Change remaining HAVE_GTK2 to FEAT_GUI_GTK. | Bram Moolenaar | |
2010-06-06 | Fix crash for ":ownsyntax". (Dominique Pelle) | Bram Moolenaar | |
2010-06-06 | Fixed: after ":ownsyntax perl" and ":e" syntax was cleared in other window. | Bram Moolenaar | |
2010-06-06 | Fixed memory leak in ":ownsyntax". | Bram Moolenaar | |
2010-06-06 | Fix a few compiler warnings. Fix crash with encrypted undo file. | Bram Moolenaar | |
2010-06-05 | Add the conceal patch from Vince Negri. | Bram Moolenaar | |
2010-05-24 | Fix uninit memory read in undo code. Fix uint32_t in proto file. | Bram Moolenaar | |
A few minor changes. | |||
2010-05-13 | updated for version 7.2.418 | Bram Moolenaar | |
Problem: Vim tries to set the background or foreground color in a terminal to -1. (Graywh) Happens with ":hi Normal ctermbg=NONE". Solution: When resetting the foreground or background color don't set the color, let the clear screen code do that. | |||
2010-03-23 | updated for version 7.2.405 | Bram Moolenaar | |
Problem: When built with small features the matching text is not highlighted for ":s/pat/repl/c". Solution: Remove the #ifdef for IncSearch. (James Vega) | |||
2010-03-10 | updated for version 7.2.389 | Bram Moolenaar | |
Problem: synIDattr() cannot return the font. Solution: Support the "font" argument. (Christian Brabandt) | |||
2010-03-02 | updated for version 7.2.383 | Bram Moolenaar | |
Problem: Vim doesn't build cleanly with MSVC 2010. Solution: Change a few types. (George Reilly) | |||
2010-02-24 | updated for version 7.2.376 | Bram Moolenaar | |
Problem: ml_get error when using SiSU syntax. (Nathan Thomas) Solution: If the match ends below the last line move it to the end of the last line. | |||
2010-01-19 | updated for version 7.2.333 | Bram Moolenaar | |
Problem: Warnings from static code analysis. Solution: Small changes to various lines. (Dominique Pelle) | |||
2009-12-16 | updated for version 7.2-317 | Bram Moolenaar | |
2009-05-17 | updated for version 7.2-180 | Bram Moolenaar | |
2008-08-09 | updated for version 7.2-000 | Bram Moolenaar | |
2008-08-06 | updated for version 7.2b-030 | Bram Moolenaar | |
2008-06-24 | updated for version 7.2a | Bram Moolenaar | |
2008-01-19 | updated for version 7.1-236 | Bram Moolenaar | |
2008-01-13 | updated for version 7.1-227 | Bram Moolenaar | |
2008-01-12 | updated for version 7.1-219 | Bram Moolenaar | |
2008-01-11 | updated for version 7.1-218 | Bram Moolenaar | |
2008-01-10 | updated for version 7.1-215 | Bram Moolenaar | |
2007-10-07 | updated for version 7.1-136 | Bram Moolenaar | |
2007-08-30 | updated for version 7.1-094 | Bram Moolenaar | |