Bram Moolenaar
c258a13f9c
Added tag v7-3-374 for changeset 0a9d7cf90f94
2011-12-14 14:49:46 +01:00
Bram Moolenaar
9fd390236e
updated for version 7.3.374
...
Problem: ++encoding does not work properly.
Solution: Recognize ++encoding before ++enc. (Charles Cooper)
2011-12-14 14:49:45 +01:00
Bram Moolenaar
9fb0f89145
Added tag v7-3-373 for changeset a1d2f741d45c
2011-12-14 14:15:17 +01:00
Bram Moolenaar
1fecd76f63
updated for version 7.3.373
...
Problem: A tags file with an extremely long name may cause an infinite loop.
Solution: When encountering a long name switch to linear search.
2011-12-14 14:15:16 +01:00
Bram Moolenaar
b380b37ff0
Added tag v7-3-372 for changeset 6ff80dd02b51
2011-12-08 18:44:51 +01:00
Bram Moolenaar
aac1b48cee
updated for version 7.3.372
...
Problem: When using a command line mapping to <Up> with file name
completion to go one directory up, 'wildchar' is inserted.
(Yasuhiro Matsumoto)
Solution: Set the KeyTyped flag.
2011-12-08 18:44:51 +01:00
Bram Moolenaar
c8aefeed97
Added tag v7-3-371 for changeset e757e1127d21
2011-12-08 17:49:35 +01:00
Bram Moolenaar
b5052701a5
updated for version 7.3.371
...
Problem: Crash in autocomplete. (Greg Weber)
Solution: Check not going over allocated buffer size.
2011-12-08 17:49:35 +01:00
Bram Moolenaar
f1ddd31fe9
Added tag v7-3-370 for changeset 3801e4811b0e
2011-12-08 16:00:16 +01:00
Bram Moolenaar
06c0b97f9d
updated for version 7.3.370
...
Problem: Compiler warns for unused variable in Lua interface.
Solution: Remove the variable.
2011-12-08 16:00:16 +01:00
Bram Moolenaar
87272c2e54
Added tag v7-3-369 for changeset 0df9718c45b6
2011-12-08 15:58:00 +01:00
Bram Moolenaar
6169415865
updated for version 7.3.369
...
Problem: When compiled with Gnome get an error message when using --help.
Solution: Don't fork. (Ivan Krasilnikov)
2011-12-08 15:57:59 +01:00
Bram Moolenaar
43e9dea666
Added tag v7-3-368 for changeset 4e9c5338f44c
2011-12-08 15:17:34 +01:00
Bram Moolenaar
7351680605
updated for version 7.3.368
...
Problem: Gcc complains about redefining _FORTIFY_SOURCE.
Solution: Undefine it before redefining it.
2011-12-08 15:17:34 +01:00
Bram Moolenaar
f8175ad7b2
Added tag v7-3-367 for changeset 972bd3fca556
2011-12-08 15:14:09 +01:00
Bram Moolenaar
75cd710649
updated for version 7.3.367
...
Problem: :wundo and :rundo use a wrong checksum.
Solution: Include the last line when computing the hash. (Christian Brabandt)
2011-12-08 15:14:09 +01:00
Bram Moolenaar
8c23633066
Added tag v7-3-366 for changeset 436b42f3cba1
2011-12-08 15:12:12 +01:00
Bram Moolenaar
4e49c0646d
updated for version 7.3.366
...
Problem: A tags file with an extremely long name causes errors.
Solution: Ignore tags that are too long. (Arno Renevier)
2011-12-08 15:12:11 +01:00
Bram Moolenaar
4c2fa89984
Added tag v7-3-365 for changeset 54ef99c39139
2011-12-08 15:09:52 +01:00
Bram Moolenaar
78bdb17fd1
updated for version 7.3.365
...
Problem: Crash when using a large Unicode character in a file that has
syntax highlighting. (ngollan)
Solution: Check for going past the end of the utf tables. (Dominique Pelle)
2011-12-08 15:09:52 +01:00
Bram Moolenaar
5c5f2b7b78
Added tag v7-3-364 for changeset b0bbaf1020f0
2011-12-01 20:59:21 +01:00
Bram Moolenaar
1abdc96ef9
updated for version 7.3.364
...
Problem: Can't compile on HP-UX. (John Marriott)
Solution: Only use TTYM_URXVT when it is defined.
2011-12-01 20:59:21 +01:00
Bram Moolenaar
f3475f243b
Added tag v7-3-363 for changeset c025592d7b1d
2011-11-30 17:20:23 +01:00
Bram Moolenaar
d48fb3b223
updated for version 7.3.363
...
Problem: C indenting is wrong after #endif followed by a semicolon.
Solution: Add special handling for a semicolon in a line by itself. (Lech
Lorens)
2011-11-30 17:20:23 +01:00
Bram Moolenaar
9c4862bdf6
Added tag v7-3-362 for changeset 074ddc768fea
2011-11-30 17:01:59 +01:00
Bram Moolenaar
a1bf69a653
updated for version 7.3.362
...
Problem: ml_get error when using ":g" with folded lines.
Solution: Adjust the line number for changed_lines(). (Christian Brabandt)
2011-11-30 17:01:58 +01:00
Bram Moolenaar
c15b4a0f31
Added tag v7-3-361 for changeset e42252611e74
2011-11-30 15:40:56 +01:00
Bram Moolenaar
17642ddddd
updated for version 7.3.361
...
Problem: Accessing memory after it is freed when EXITFREE is defined.
Solution: Don't access curwin when firstwin is NULL. (Dominique Pelle)
2011-11-30 15:40:56 +01:00
Bram Moolenaar
4dc4606b18
Added tag v7-3-360 for changeset 28480c9006e6
2011-11-30 15:19:28 +01:00
Bram Moolenaar
35c2054dd4
updated for version 7.3.360
...
Problem: Interrupting the load of an autoload function may cause a crash.
Solution: Do not use the hashitem when not valid. (Yukihiro Nakadaira)
2011-11-30 15:19:28 +01:00
Bram Moolenaar
1d7a8e8e93
Added tag v7-3-359 for changeset b7f0f23bf906
2011-11-30 14:57:31 +01:00
Bram Moolenaar
0120135839
updated for version 7.3.359
...
Problem: Command line completion shows dict functions.
Solution: Skip dict functions for completion. (Yasuhiro Matsumoto)
2011-11-30 14:57:31 +01:00
Bram Moolenaar
162621294b
Added tag v7-3-358 for changeset 97a52300ef2b
2011-11-30 14:47:16 +01:00
Bram Moolenaar
9c18762537
updated for version 7.3.358
...
Problem: Mouse support doesn't work properly.
Solution: Add HMT_URXVT. (lilydjwg, James McCoy)
2011-11-30 14:47:15 +01:00
Bram Moolenaar
a83eb97cd9
Added tag v7-3-357 for changeset e618700297e8
2011-11-30 13:42:44 +01:00
Bram Moolenaar
298fdc30a5
updated for version 7.3.357
...
Problem: Compiler warning in MS-Windows console build.
Solution: Adjust return type of PrintHookProc(). (Mike Williams)
2011-11-30 13:42:44 +01:00
Bram Moolenaar
e9e2160c50
Added tag v7-3-356 for changeset c349a670716a
2011-11-30 13:03:28 +01:00
Bram Moolenaar
b8aece3c2b
updated for version 7.3.356
...
Problem: Using "o" with 'cindent' set may freeze Vim. (lolilolicon)
Solution: Skip over {} correctly. (Hari G)
2011-11-30 13:03:28 +01:00
Bram Moolenaar
4eca70ab34
Added tag v7-3-355 for changeset d2f70593afeb
2011-11-30 11:31:30 +01:00
Bram Moolenaar
3fdb703028
updated for version 7.3.355
...
Problem: GTK warnings when using netrw.vim. (Ivan Krasilnikov)
Solution: Do not remove the beval event handler twice.
2011-11-30 11:31:30 +01:00
Bram Moolenaar
1b2c4872a3
Added tag v7-3-354 for changeset 6672b1645306
2011-11-30 11:15:47 +01:00
Bram Moolenaar
bc76b6331d
updated for version 7.3.354
...
Problem: ":set backspace+=eol" doesn't work when 'backspace' has a
backwards compatible value of 2.
Solution: Convert the number to a string. (Hirohito Higashi)
2011-11-30 11:15:47 +01:00
Bram Moolenaar
10b3c0f645
Added tag v7-3-353 for changeset 12bb368fef2c
2011-10-26 23:48:21 +02:00
Bram Moolenaar
6600aafdb0
updated for version 7.3.353
...
Problem: Missing part of the urxvt patch.
Solution: Add the change in term.c
2011-10-26 23:48:20 +02:00
Bram Moolenaar
0cf6db0293
Added tag v7-3-352 for changeset ca65249eb34b
2011-10-26 22:02:15 +02:00
Bram Moolenaar
4228b249ba
updated for version 7.3.352
...
Problem: When completing methods dict functions and script-local functions
get in the way.
Solution: Sort function names starting with "<" to the end. (Yasuhiro
Matsumoto)
2011-10-26 22:02:15 +02:00
Bram Moolenaar
b90976953d
Added tag v7-3-351 for changeset ff69efc4bc55
2011-10-26 17:04:29 +02:00
Bram Moolenaar
1342485c83
updated for version 7.3.351
...
Problem: Text formatting uses start of insert position when it should not.
(Peter Wagenaar)
Solution: Do not use Insstart when intentionally formatting.
2011-10-26 17:04:29 +02:00
Bram Moolenaar
38d02cf621
Added tag v7-3-350 for changeset 07956eab189c
2011-10-26 13:19:27 +02:00
Bram Moolenaar
ea06125e32
updated for version 7.3.350
...
Problem: Block of code after ":lua << EOF" may not work. (Paul Isambert)
Solution: Recognize the ":lua" command, skip to EOF.
2011-10-26 13:19:27 +02:00