Bram Moolenaar
ed38b0ac41
updated for version 7.3.202
...
Problem: Cannot influence the indent inside a namespace.
Solution: Add the "N" 'cino' parameter. (Konstantin Lepa)
2011-05-25 15:16:18 +02:00
Bram Moolenaar
334adf0ae5
updated for version 7.3.201
...
Problem: "} else" still causes following lines to be indented too much.
Solution: Better detection for the "else" block. (Lech Lorens)
2011-05-25 13:34:04 +02:00
Bram Moolenaar
496f9517cb
updated for version 7.3.195
...
Problem: "} else" causes following lines to be indented too much. (Rouben
Rostamian)
Solution: Better detection for the "else". (Lech Lorens)
2011-05-19 16:35:09 +02:00
Bram Moolenaar
a4271d598b
updated for version 7.3.180
...
Problem: When both a middle part of 'comments' matches and an end part, the
middle part was used errornously.
Solution: After finding the middle part match continue looking for a better
end part match. (partly by Lech Lorens)
2011-05-10 13:38:27 +02:00
Bram Moolenaar
aede6ceba3
updated for version 7.3.179
...
Problem: C-indent doesn't handle colon in string correctly.
Solution: Skip the string. (Lech Lorens)
2011-05-10 11:56:30 +02:00
Bram Moolenaar
4ae06c1fa5
updated for version 7.3.178
...
Problem: C-indent doesn't handle code right after { correctly.
Solution: Fix detecting unterminated line. (Lech Lorens)
2011-05-10 11:39:19 +02:00
Bram Moolenaar
72bb0d6455
updated for version 7.3.170
...
Problem: VMS Makefile for testing was not updated for test77.
Solution: Add test77 to the Makefile.
2011-04-28 19:05:05 +02:00
Bram Moolenaar
8d2d71d4bb
updated for version 7.3.164
...
Problem: C-indenting: a preprocessor statement confuses detection of a
function delcaration.
Solution: Ignore preprocessor lines. (Lech Lorens) Also recognize the style
to put a comma before the argument name.
2011-04-28 13:02:09 +02:00
Bram Moolenaar
b3c5284c5b
Add missing files for patch 7.3.143.
2011-03-22 20:52:37 +01:00
Bram Moolenaar
b05b10a3c0
updated for version 7.3.143
...
Problem: Memfile is not tested sufficiently. Looking up blocks in a
memfile is slow when there are many blocks.
Solution: Add high level test and unittest. Adjust the number of hash
buckets to the number of blocks. (Ivan Krasilnikov)
2011-03-22 18:10:45 +01:00
Bram Moolenaar
bf55e1442d
updated for version 7.3.056
...
Problem: "getline" argument in do_cmdline() shadows global.
Solution: Rename the argument.
Files: src/ex_docmd.c
2010-11-16 11:32:01 +01:00
Bram Moolenaar
67b3f99eb0
updated for version 7.3.055
...
Problem: Recursively nested lists and dictionaries cause a near-endless
loop when comparing them with a copy. (ZyX)
Solution: Limit recursiveness in a way that non-recursive structures can
still be nested very deep.
Files: src/eval.c, src/testdir/test55.in, src/testdir/test55.ok
2010-11-10 20:41:57 +01:00
Bram Moolenaar
37dd018cdd
updated for version 7.3.052
...
Problem: When 'completefunc' opens a new window all kinds of errors follow.
(Xavier Deguillard)
Solution: When 'completefunc' goes to another window or buffer and when it
deletes text abort completion. Add a test for 'completefunc'.
2010-11-10 16:54:20 +01:00
Bram Moolenaar
16a6165bb3
updated for version 7.3.047
...
Problem: Missing makefile updates for test 75.
Solution: Update the makefiles.
2010-10-27 18:36:36 +02:00
Bram Moolenaar
bd74325960
updated for version 7.3.032
...
Problem: maparg() doesn't return the flags, such as <buffer>, <script>,
<silent>. These are needed to save and restore a mapping.
Solution: Improve maparg(). (also by Christian Brabandt)
2010-10-20 21:23:33 +02:00
Bram Moolenaar
680eeca955
updated for version 7.3.030
...
Problem: Cannot store Dict and List in viminfo file.
Solution: Add support for this. (Christian Brabandt)
2010-10-20 17:44:42 +02:00
Bram Moolenaar
f75d498844
updated for version 7.3.029
...
Problem: ":sort n" sorts lines without a number as number zero. (Beeyawned)
Solution: Make lines without a number sort before lines with a number. Also
fix sorting negative numbers.
2010-10-15 20:20:05 +02:00
Bram Moolenaar
341ad7a699
updated for version 7.3.020
...
Problem: Cursor position wrong when joining multiple lines and
'formatoptions' contains "a". (Moshe Kamensky)
Solution: Adjust cursor position for skipped indent. (Carlo Teubner)
2010-10-09 17:23:31 +02:00
Bram Moolenaar
3967692f9e
updated for version 7.3.015
...
Problem: Test is using error message that no longer exists.
Solution: Change E106 to E121. (Dominique Pelle)
2010-09-29 16:55:49 +02:00
Bram Moolenaar
217d285fdd
updated for version 7.3.005
...
Problem: Crash when using undotree(). (Christian Brabandt)
Solution: Increase the list reference count. Add a test for undotree()
(Lech Lorens)
2010-09-14 12:47:37 +02:00
Bram Moolenaar
d732f9aee0
Two fixes for :find completion and more testing. (Nazri Ramliy)
2010-08-15 13:29:11 +02:00
Bram Moolenaar
daf3b39559
Use mkdir() instead of !mkdir in test 73, it's more reliable.
2010-08-13 19:13:18 +02:00
Bram Moolenaar
31710268ed
More fixes for :find completion. (mostly by Nazri Ramliy)
2010-08-13 13:36:15 +02:00
Bram Moolenaar
0be992e347
Improvements for :find completion.
2010-08-12 21:50:51 +02:00
Bram Moolenaar
9bc040c8e1
Fixes for :find completion.
2010-08-11 22:05:57 +02:00
Bram Moolenaar
2d231cb89c
Make test 11 pass when there is no gzip program. (John Beckett)
2010-08-08 13:18:47 +02:00
Bram Moolenaar
5a7d7cde15
Avoid that test 73 ovewrites viminfo. (James Vega)
2010-08-08 13:13:51 +02:00
Bram Moolenaar
db41fa255d
Fix: test 73 failed with small features.
2010-08-08 13:07:57 +02:00
Bram Moolenaar
dd10ce91a8
Set 'visualbell' in test 72 to avoid a beep.
2010-08-07 13:27:48 +02:00
Bram Moolenaar
84f888a5b3
Fix a few problems for :find completion. Test much more. (Nazri Ramliy)
2010-08-05 21:40:16 +02:00
Bram Moolenaar
3ea5fa7a11
Make test 73 a bit more portable.
2010-08-04 18:27:57 +02:00
Bram Moolenaar
80a7dcf8b5
Make :find completion consistent between Unix and MS-Windows. Add a test.
...
(Nazri Ramliy)
2010-08-04 17:07:20 +02:00
Bram Moolenaar
280a29f931
Small changes to the test files. (John Beckett)
2010-08-04 16:10:19 +02:00
Bram Moolenaar
f4274feeef
Fix: test 69 didn't work on MS-Windows. Test 72 beeped too often.
2010-08-01 17:37:17 +02:00
Bram Moolenaar
00ec6854e3
Avoid that running tests changes viminfo.
2010-08-01 15:47:03 +02:00
Bram Moolenaar
f878bcfb2e
Improvements for VMS. (Zoltan Arpadffy)
2010-07-30 22:29:41 +02:00
Bram Moolenaar
68392724b8
Correct comments in testdir makefiles. (John Beckett)
2010-07-30 22:04:17 +02:00
Bram Moolenaar
0e1673aef4
Fix test 72 not setting encryption method. (Dominique Pelle)
2010-07-30 21:49:07 +02:00
Bram Moolenaar
48bae372e9
Few more fixes for VMS.
2010-07-29 23:12:15 +02:00
Bram Moolenaar
bed7beca58
Fix: when resetting both 'title' and 'icon' the title would be set after a
...
shell command.
Reset 'title' and 'icon' in test47 to avoid the xterm title getting messed up.
2010-07-25 13:42:29 +02:00
Bram Moolenaar
49771f4fb0
Change 'cryptmethod' from a number to a string option. Make it global-local.
2010-07-20 17:32:38 +02:00
Bram Moolenaar
06a108f34c
Improve test for joining lines. (Milan Vancura)
2010-07-10 14:10:50 +02:00
Bram Moolenaar
730cde924c
Added ":earlier 1f" and ":later 1f".
2010-06-27 05:18:54 +02:00
Bram Moolenaar
a8ffcbbf5d
Crypt the swapfile.
2010-06-21 06:15:46 +02:00
Bram Moolenaar
80794b1ce6
Added salt to blowfish encryption.
2010-06-13 05:20:42 +02:00
Bram Moolenaar
20a825ae0f
Add test for gettabvar() and settabvar().
2010-05-31 21:27:30 +02:00
Bram Moolenaar
a3ff49fdcc
Crypt the text in the undo file if the file itself is crypted.
2010-05-30 22:48:02 +02:00
Bram Moolenaar
644fdff7c1
A few more fixes for undo file. Split test in two parts so that it doesn't
...
fail with tiny features.
2010-05-30 13:26:21 +02:00
Bram Moolenaar
bc42c1e427
updated for version 7.2.440
...
Problem: Calling a function through a funcref, where the function deletes
the funcref, leads to an invalid memory access.
Solution: Make a copy of the function name. (Lech Lorens)
2010-05-28 22:06:46 +02:00
Bram Moolenaar
55debbe384
Included patch for persistent undo. Lots of changes and added test.
2010-05-23 23:34:36 +02:00