Bram Moolenaar
76e5f82bfe
updated for version 7.3.925
...
Problem: Typos in source files.
Solution: Fix the typos. (Ken Takata)
2013-05-06 04:24:17 +02:00
Bram Moolenaar
34aae14104
updated for version 7.3.921
...
Problem: Trying to create a fontset handle when 'guifontset' is not set.
Solution: Add curly braces around the code block. (Max Kirillov)
2013-05-04 03:42:34 +02:00
Bram Moolenaar
fed6561294
updated for version 7.3.776
...
Problem: ml_get error when searching, caused by curwin not matching curbuf.
Solution: Avoid changing curbuf. (Lech Lorens)
2013-01-23 15:53:15 +01:00
Bram Moolenaar
0d6a25104f
updated for version 7.3.706
...
Problem: Can't build Motif version.
Solution: Fix wrongly named variable. (Ike Devolder)
2012-10-21 21:25:22 +02:00
Bram Moolenaar
faebc8f4c4
updated for version 7.3.697
...
Problem: Leaking resources when setting GUI font.
Solution: Free the font. (Ken Takata)
2012-10-21 01:40:30 +02:00
Bram Moolenaar
fe1126eb28
updated for version 7.3.607
...
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-07-19 17:39:07 +02:00
Bram Moolenaar
cc51097aa2
updated for version 7.3.532
...
Problem: Compiler warning from Clang.
Solution: Use a different way to point inside a string. (Dominique Pelle)
2012-06-01 13:18:53 +02:00
Bram Moolenaar
fd75bcf544
updated for version 7.3.479
...
Problem: When 'cursorline' is set the line number highlighting can't be set
separately.
Solution: Add "CursorLineNr". (Howard Buchholz)
2012-03-23 16:25:17 +01:00
Bram Moolenaar
c0db6bd33c
updated for version 7.3.475
...
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-03-16 20:16:46 +01:00
Bram Moolenaar
8cba80c05b
updated for version 7.3.400
...
Problem: Compiler warnings for shadowed variables.
Solution: Remove or rename the variables.
2012-01-10 22:26:17 +01:00
Bram Moolenaar
bea751a99e
updated for version 7.3.226
...
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-06-19 04:54:21 +02:00
Bram Moolenaar
03de7d2640
updated for version 7.3.205
...
Problem: Syntax "extend" doesn't work correctly.
Solution: Avoid calling check_state_ends() recursively (Ben Schmidt)
2011-05-25 17:56:27 +02:00
Bram Moolenaar
d9c06c301b
updated for version 7.3.190
...
Problem: When there is a "containedin" syntax argument highlighting may be
wrong. (Radek)
Solution: Reset current_next_list. (Ben Schmidt)
2011-05-19 12:14:10 +02:00
Bram Moolenaar
fe7d891b2a
updated for version 7.3.160
...
Problem: Unsafe string copying.
Solution: Use vim_strncpy() instead of strcpy(). Use vim_strcat() instead
of strcat().
2011-04-11 16:56:35 +02:00
Bram Moolenaar
a061651587
updated for version 7.3.154
...
Problem: Can't compile with tiny features. (Tony Mechelynck)
Solution: Move #define outside of #ifdef.
2011-04-02 15:12:50 +02:00
Bram Moolenaar
e5d0e3db86
updated for version 7.3.148
...
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-04-01 14:44:59 +02:00
Bram Moolenaar
dba2afde7d
updated for version 7.3.104
...
Problem: Conceal: using Tab for cchar causes problems. (ZyX)
Solution: Do not accept a control character for cchar.
2011-01-22 00:58:20 +01:00
Bram Moolenaar
855f2810f5
updated for version 7.3.017
...
Problem: smatch reports errors.
Solution: Fix the reported errors. (Dominique Pelle)
2010-09-29 18:32:52 +02:00
Bram Moolenaar
4348a787c1
Remove unused code.
...
--HG--
branch : vim73
2010-08-08 16:38:42 +02:00
Bram Moolenaar
84142e9d4e
Fix: concealed regions didn't get redrawn correctly when moving the cursor
...
through them.
--HG--
branch : vim73
2010-07-28 18:14:45 +02:00
Bram Moolenaar
89a4db0de3
Fix for "concealends". (Vince Negri)
...
--HG--
branch : vim73
2010-07-27 20:47:25 +02:00
Bram Moolenaar
db79a140c6
Add the synconcealed() function and use it for :TOhtml. (Benjamin Fritz)
...
--HG--
branch : vim73
2010-07-25 12:46:44 +02:00
Bram Moolenaar
9d5ae4635a
Give each syntax item a sequence number, so that we know when it starts and
...
can show the 'cchar' for each of them.
--HG--
branch : vim73
2010-07-24 17:29:03 +02:00
Bram Moolenaar
c8e70b997c
For conceal mode: when two different syntax items follow each other, show the
...
replacement character for both.
--HG--
branch : vim73
2010-07-22 22:16:29 +02:00
Bram Moolenaar
e6c3708dc1
Allow synIDattr() getting GUI attributes when build without GUI.
...
(Matt Wozniski)
--HG--
branch : vim73
2010-07-14 22:04:22 +02:00
Bram Moolenaar
5a4dfdb36d
Added 'colorcolumn' option. Partly by Gregor Uhlenheuer.
...
--HG--
branch : vim73
2010-07-14 19:53:30 +02:00
Bram Moolenaar
6a69fb8ff7
Support completion for ":find". (Nazri Ramliy)
...
Cleanup white space.
--HG--
branch : vim73
2010-07-14 16:52:17 +02:00
Bram Moolenaar
e2e6984ea3
Change remaining HAVE_GTK2 to FEAT_GUI_GTK.
...
--HG--
branch : vim73
2010-06-26 05:38:18 +02:00
Bram Moolenaar
d7ae4afbbf
Fix crash for ":ownsyntax". (Dominique Pelle)
...
--HG--
branch : vim73
2010-06-06 23:10:19 +02:00
Bram Moolenaar
24549d755c
Fixed: after ":ownsyntax perl" and ":e" syntax was cleared in other window.
...
--HG--
branch : vim73
2010-06-06 16:11:09 +02:00
Bram Moolenaar
36443a74e8
Fixed memory leak in ":ownsyntax".
...
--HG--
branch : vim73
2010-06-06 15:21:10 +02:00
Bram Moolenaar
0b69e0ad42
Fix a few compiler warnings. Fix crash with encrypted undo file.
...
--HG--
branch : vim73
2010-06-06 14:20:26 +02:00
Bram Moolenaar
01601aaade
Add the conceal patch from Vince Negri.
...
--HG--
branch : vim73
2010-06-05 23:22:07 +02:00
Bram Moolenaar
1ce6651297
Fix uninit memory read in undo code. Fix uint32_t in proto file.
...
A few minor changes.
--HG--
branch : vim73
2010-05-24 11:59:29 +02:00
Bram Moolenaar
de95ceada3
updated for version 7.2.418
...
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-05-13 15:40:30 +02:00
Bram Moolenaar
e22077e337
updated for version 7.2.405
...
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-23 14:39:12 +01:00
Bram Moolenaar
63285373fc
updated for version 7.2.389
...
Problem: synIDattr() cannot return the font.
Solution: Support the "font" argument. (Christian Brabandt)
2010-03-10 13:43:49 +01:00
Bram Moolenaar
54b75f39a3
updated for version 7.2.383
...
Problem: Vim doesn't build cleanly with MSVC 2010.
Solution: Change a few types. (George Reilly)
2010-03-02 17:54:33 +01:00
Bram Moolenaar
d6319a9921
updated for version 7.2.376
...
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-02-24 17:22:20 +01:00
Bram Moolenaar
76cf08b6ab
updated for version 7.2.333
...
Problem: Warnings from static code analysis.
Solution: Small changes to various lines. (Dominique Pelle)
2010-01-19 14:59:56 +01:00
vimboss
9d373ca370
updated for version 7.2-317
2009-12-16 17:13:44 +00:00
vimboss
915fba8a25
updated for version 7.2-180
2009-05-17 11:33:22 +00:00
vimboss
0dceccaafb
updated for version 7.2-000
2008-08-09 17:55:22 +00:00
vimboss
3047db21af
updated for version 7.2b-030
2008-08-06 13:28:57 +00:00
vimboss
97186bab3b
updated for version 7.2a
2008-06-24 22:58:06 +00:00
vimboss
349aaa485c
updated for version 7.1-236
2008-01-19 14:59:58 +00:00
vimboss
351704de2b
updated for version 7.1-227
2008-01-13 16:40:19 +00:00
vimboss
8c222c7e58
updated for version 7.1-219
2008-01-12 15:47:10 +00:00
vimboss
4267974d65
updated for version 7.1-218
2008-01-11 20:27:45 +00:00
vimboss
e7e7103b6e
updated for version 7.1-215
2008-01-10 21:24:39 +00:00