comparison runtime/doc/version7.txt @ 10895:c391bfbdb452

Updated runtime files. commit https://github.com/vim/vim/commit/3df0173fa6d0418e89ef4e9c1d04a97c92eec27c Author: Bram Moolenaar <Bram@vim.org> Date: Fri Feb 17 22:47:16 2017 +0100 Updated runtime files.
author Christian Brabandt <cb@256bit.org>
date Fri, 17 Feb 2017 23:00:06 +0100
parents 9f48eab77d62
children e05695e59f6d
comparison
equal deleted inserted replaced
10894:f1cb20e3550e 10895:c391bfbdb452
1443 1443
1444 g CTRL-G also shows the number of characters if it differs from the number of 1444 g CTRL-G also shows the number of characters if it differs from the number of
1445 bytes. 1445 bytes.
1446 1446
1447 Completion for ":debug" and entering an expression for the '=' register. Skip 1447 Completion for ":debug" and entering an expression for the '=' register. Skip
1448 ":" between range and command name. (Peter winters) 1448 ":" between range and command name. (Peter Winters)
1449 1449
1450 CTRL-Q in Insert mode now works like CTRL-V by default. Previously it was 1450 CTRL-Q in Insert mode now works like CTRL-V by default. Previously it was
1451 ignored. 1451 ignored.
1452 1452
1453 When "beep" is included in 'debug' a function or script that causes a beep 1453 When "beep" is included in 'debug' a function or script that causes a beep
3369 Files: runtime/scripts.vim 3369 Files: runtime/scripts.vim
3370 3370
3371 Patch 7.0.050 3371 Patch 7.0.050
3372 Problem: After using the netbeans interface close command a stale pointer 3372 Problem: After using the netbeans interface close command a stale pointer
3373 may be used. 3373 may be used.
3374 Solution: Clear the pointer to the closed buffer. (Xaview de Gaye) 3374 Solution: Clear the pointer to the closed buffer. (Xavier de Gaye)
3375 Files: src/netbeans.c 3375 Files: src/netbeans.c
3376 3376
3377 Patch 7.0.051 (after 7.0.44) 3377 Patch 7.0.051 (after 7.0.44)
3378 Problem: The Perl interface doesn't compile or doesn't work properly. 3378 Problem: The Perl interface doesn't compile or doesn't work properly.
3379 Solution: Remove the spaces before #ifdef and avoid an empty line above it. 3379 Solution: Remove the spaces before #ifdef and avoid an empty line above it.
16270 Solution: Check for "\n" character. 16270 Solution: Check for "\n" character.
16271 Files: src/regexp_nfa.c, src/testdir/test64.in, src/testdir/test64.ok 16271 Files: src/regexp_nfa.c, src/testdir/test64.in, src/testdir/test64.ok
16272 16272
16273 Patch 7.3.1026 16273 Patch 7.3.1026
16274 Problem: New regexp: pattern that includes a new-line matches too early. 16274 Problem: New regexp: pattern that includes a new-line matches too early.
16275 (john McGowan) 16275 (John McGowan)
16276 Solution: Do not start searching in the second line. 16276 Solution: Do not start searching in the second line.
16277 Files: src/regexp_nfa.c, src/testdir/test64.in, src/testdir/test64.ok 16277 Files: src/regexp_nfa.c, src/testdir/test64.in, src/testdir/test64.ok
16278 16278
16279 Patch 7.3.1027 16279 Patch 7.3.1027
16280 Problem: New regexp performance: Calling no_Magic() very often. 16280 Problem: New regexp performance: Calling no_Magic() very often.