Bram Moolenaar
f285830d4e
Added tag v7-3-259 for changeset 59130cd78dfc
2011-07-20 17:58:20 +02:00
Bram Moolenaar
7d5a12e4e0
updated for version 7.3.259
...
Problem: Equivalence classes only work for latin characters.
Solution: Add the Unicode equivalence characters. (Dominique Pelle)
2011-07-20 17:58:20 +02:00
Bram Moolenaar
6bcff1df81
Added tag v7-3-258 for changeset bdc3335bd72e
2011-07-20 17:27:25 +02:00
Bram Moolenaar
1a5ecaa8aa
updated for version 7.3.258
...
Problem: MS-Windows: The edit with existing vim context menu entries can be
unwanted.
Solution: Let a registry entry disable them. (Jerome Vuarand)
2011-07-20 17:27:25 +02:00
Bram Moolenaar
eb0b6bb3d0
Added tag v7-3-257 for changeset 1fad9c73d77a
2011-07-20 16:37:24 +02:00
Bram Moolenaar
b2a90b3cc1
updated for version 7.3.257
...
Problem: Not all completions are available to user commands.
Solution: Add "color", "compiler", "file_in_path" and "locale". (Dominique
Pelle)
2011-07-20 16:37:24 +02:00
Bram Moolenaar
079f2afb2c
Added tag v7-3-256 for changeset c296c225736e
2011-07-20 15:09:44 +02:00
Bram Moolenaar
f0eecff4d6
updated for version 7.3.256
...
Problem: Javascript indenting not sufficiently tested.
Solution: Add more tests. (Luc Deschenaux) Mark the lines that are indented
wrong.
2011-07-20 15:09:43 +02:00
Bram Moolenaar
743c216f43
Added tag v7-3-255 for changeset aa998de9f959
2011-07-20 15:04:59 +02:00
Bram Moolenaar
b87452b2ad
updated for version 7.3.255
...
Problem: When editing a file such as "File[2010-08-15].vim" an E16 error is
given. (Manuel Stol)
Solution: Don't give an error for failing to compile the regexp.
2011-07-20 15:04:58 +02:00
Bram Moolenaar
b3ab0181eb
Updated runtime files.
...
Add missing test82 files.
2011-07-18 19:40:27 +02:00
Bram Moolenaar
f05d9ee525
Added tag v7-3-254 for changeset 1eb805225de7
2011-07-15 21:24:12 +02:00
Bram Moolenaar
167cf4d2e4
updated for version 7.3.254
...
Problem: The coladd field is not reset when setting the line number for a
":call" command.
Solution: Reset it.
2011-07-15 21:24:11 +02:00
Bram Moolenaar
ae999eb642
Added tag v7-3-253 for changeset c21429d7768c
2011-07-15 21:16:59 +02:00
Bram Moolenaar
35d824aaa4
updated for version 7.3.253
...
Problem: "echo 'abc' > ''" returns 0 or 1, depending on 'ignorecase'.
Checks in mb_strnicmp() for illegal and truncated bytes are
wrong. Should not assume that byte length is equal before case
folding.
Solution: Add utf_safe_read_char_adv() and utf_strnicmp(). Add a test for
this. (Ivan Krasilnikov)
2011-07-15 21:16:59 +02:00
Bram Moolenaar
28c94e5e38
Added tag v7-3-252 for changeset 0b4289bcf836
2011-07-15 17:56:16 +02:00
Bram Moolenaar
be1658efe5
updated for version 7.3.252
...
Problem: Tests fail. (David Northfield)
Solution: Add missing update for .ok file.
2011-07-15 17:56:16 +02:00
Bram Moolenaar
39e86023de
Added tag v7-3-251 for changeset fe6ad3fd8532
2011-07-15 17:51:34 +02:00
Bram Moolenaar
7981e476eb
updated for version 7.3.251
...
Problem: "gH<Del>" deletes the current line, except when it's the last
line.
Solution: Set the "include" flag to indicate the last line is to be deleted.
2011-07-15 17:51:34 +02:00
Bram Moolenaar
4c1272ff47
Added tag v7-3-250 for changeset f909f4f0f38c
2011-07-15 15:54:44 +02:00
Bram Moolenaar
dd2dc1a6d6
updated for version 7.3.250
...
Problem: Python: Errors in Unicode characters not handled nicely.
Solution: Add the surrogateescape error handler. (lilydjwg)
2011-07-15 15:54:44 +02:00
Bram Moolenaar
492e90558b
Added tag v7-3-249 for changeset 9f71f5a526af
2011-07-15 14:12:31 +02:00
Bram Moolenaar
775c5a4c62
updated for version 7.3.249
...
Problem: Wrong indenting for array initializer.
Solution: Detect '}' in a better way. (Lech Lorens)
2011-07-15 14:12:30 +02:00
Bram Moolenaar
0cfc17ca8c
Added tag v7-3-248 for changeset 57a7998e0fa8
2011-07-15 13:52:04 +02:00
Bram Moolenaar
32bc9a3222
updated for version 7.3.248
...
Problem: PC Install instructions missing install instructions.
Solution: Step-by-step explanation. (Michael Soyka)
2011-07-15 13:52:04 +02:00
Bram Moolenaar
f2c2be3d72
Added tag v7-3-247 for changeset 7fe2c092913e
2011-07-15 13:33:21 +02:00
Bram Moolenaar
64be3e0342
updated for version 7.3.247
...
Problem: Running tests changes the users viminfo file. Test for patch
7.3.245 missing.
Solution: Add "nviminfo" to the 'viminfo' option. Include the test.
2011-07-15 13:33:21 +02:00
Bram Moolenaar
1f3c9e72a5
Added tag v7-3-246 for changeset 3f1a4ed36d1b
2011-07-15 13:21:30 +02:00
Bram Moolenaar
f6739048ea
updated for version 7.3.246
...
Problem: Repeating "f4" in "4444" skips one 4.
Solution: Check the t_cmd flag. (Christian Brabandt)
2011-07-15 13:21:30 +02:00
Bram Moolenaar
611a10bba9
Added tag v7-3-245 for changeset 52512eddb876
2011-07-15 13:09:51 +02:00
Bram Moolenaar
de423a9dc0
updated for version 7.3.245
...
Problem: Python 3.2 libraries not correctly detected.
Solution: Add the suffix to the library name. (Niclas Zeising)
2011-07-15 13:09:51 +02:00
Bram Moolenaar
67f0d1ec34
Added tag v7-3-244 for changeset be6b65096362
2011-07-07 17:43:42 +02:00
Bram Moolenaar
859e57db42
updated for version 7.3.244
...
Problem: MS-Windows: Build problem with old compiler. (John Beckett)
Solution: Only use HandleToLong() when available. (Mike Williams)
2011-07-07 17:43:41 +02:00
Bram Moolenaar
fd6540de35
Added tag v7-3-243 for changeset 512ddd87f1a8
2011-07-07 17:36:57 +02:00
Bram Moolenaar
6c6f1710c4
updated for version 7.3.243
...
Problem: Illegal memory access in readline().
Solution: Swap the conditions. (Dominique Pelle)
2011-07-07 17:36:56 +02:00
Bram Moolenaar
7bef36535a
Added tag v7-3-242 for changeset 3d96ddbeb3b0
2011-07-07 17:15:33 +02:00
Bram Moolenaar
2a006d0d0c
updated for version 7.3.242
...
Problem: Illegal memory access in after_pathsep().
Solution: Check that the pointer is not at the start of the file name.
(Dominique Pelle)
2011-07-07 17:15:33 +02:00
Bram Moolenaar
c2a3f4c63a
Added tag v7-3-241 for changeset 0a650db02653
2011-07-07 16:44:38 +02:00
Bram Moolenaar
6a5c869113
updated for version 7.3.241
...
Problem: Using CTRL-R CTRL-W on the command line may insert only part of
the word.
Solution: Use the cursor position instead of assuming it is at the end of
the command. (Tyru)
2011-07-07 16:44:37 +02:00
Bram Moolenaar
5b1812c0d1
Added tag v7-3-240 for changeset bf283e37792b
2011-07-07 16:20:52 +02:00
Bram Moolenaar
1a8a2c0c39
updated for version 7.3.240
...
Problem: External commands can't use pipes on MS-Windows.
Solution: Implement pipes and use them when 'shelltemp' isn't set. (Vincent
Berthoux)
2011-07-07 16:20:52 +02:00
Bram Moolenaar
45f86b1fe9
Added tag v7-3-239 for changeset 0bef86c5c985
2011-07-07 15:08:58 +02:00
Bram Moolenaar
ee31b81099
updated for version 7.3.239
...
Problem: Python corrects the cursor column without taking 'virtualedit'
into account. (lilydjwg)
Solution: Call check_cursor_col_win().
2011-07-07 15:08:58 +02:00
Bram Moolenaar
9dd6497635
Added tag v7-3-238 for changeset f2c108f44f41
2011-07-07 15:04:52 +02:00
Bram Moolenaar
c3f3f8731c
updated for version 7.3.238
...
Problem: Compiler warning for conversion.
Solution: Add type cast. (Mike Williams)
2011-07-07 15:04:52 +02:00
Bram Moolenaar
6816d25089
Added tag v7-3-237 for changeset e3bb93df6c34
2011-06-26 19:40:23 +02:00
Bram Moolenaar
1ecbd7ff24
updated for version 7.3.237
...
Problem: "filetype" completion doesn't work on Windows. (Yue Wu)
Solution: Don't use a glob pattern for the directories, use a list of
directories. (Dominique Pelle)
2011-06-26 19:40:23 +02:00
Bram Moolenaar
0f7d73b380
Added tag v7-3-236 for changeset c1733ef5b6e8
2011-06-26 19:13:51 +02:00
Bram Moolenaar
f9a9b3de9d
updated for version 7.3.236
...
Problem: Python 3 doesn't compile without +multi_byte
Solution: Use "latin1" when MULTI_BYTE is not defined. (lilydjwg)
2011-06-26 19:13:50 +02:00
Bram Moolenaar
842f2dd9aa
Added tag v7-3-235 for changeset 441d364773dc
2011-06-26 05:36:34 +02:00