changeset 2566:f718404597a6 vim73

Runtime file updates.
author Bram Moolenaar <bram@vim.org>
date Sat, 14 Aug 2010 21:57:32 +0200
parents 4b7929dad28a
children 6931da037310
files runtime/doc/todo.txt runtime/doc/version7.txt runtime/ftplugin/perl6.vim
diffstat 3 files changed, 10 insertions(+), 22 deletions(-) [+]
line wrap: on
line diff
--- a/runtime/doc/todo.txt
+++ b/runtime/doc/todo.txt
@@ -33,12 +33,12 @@ be worked on, but only if you sponsor Vi
 Before release 7.3:
 - Rename vim73 branch to default (hints: Xavier de Gaye, 2010 May 23)
 
-Problem with \NL in Ex script. (Ray Frish, 2010 Aug 10)
-
 Using longest completion (with "longest" in 'wildmode' or using CTRL-L) after
 :find will not work, because of shortening the results.  Don't shorten when
 looking for the longest common part of the matches.
 
+Problem with \NL in Ex script. (Ray Frish, 2010 Aug 10)
+
 Bug: E685 error for func_unref(). (ZyX, 2010 Aug 5)
 
 CTRL-] on help tag |/[\n]| doesn't jump to the right place. (Tony Mechelynck,
--- a/runtime/doc/version7.txt
+++ b/runtime/doc/version7.txt
@@ -7199,6 +7199,9 @@ The help files conceal characters used t
 
 Added the |synconcealed()| function and use it for :TOhtml. (Benjamin Fritz)
 
+Added the 'cursorbind' option, keeps the cursor in two windows with the same
+text in sync.
+
 
 Lua interface					*new-lua*
 -------------
@@ -7254,6 +7257,8 @@ Switched from autoconf 2.63 to 2.65.
 
 Removed Mupad indent and ftplugin files, they are not useful.
 
+The maximum number of messages remembered in the history is now 200 (was 100).
+
 
 Added							*added-7.3*
 -----
@@ -7375,6 +7380,8 @@ Serbian menu translations (Aleksandar Je
 Tetum spell files
 Tutor Bairish (Sepp Hell)
 Tutor in Esperanto. (Dominique Pellé)
+Tutor in Portuguese.
+Norwegian Tutor now also available as tutor.nb
 
 Removed the Mupad runtime files, they were not maintained.
 
@@ -10139,7 +10146,7 @@ Avoid warnings from the clang compiler. 
 Fix: Include wchar.h in charset.c for towupper().
 
 Fixed: Using ":read file" in an empty buffer when 'compatible' is set caused
-an error.
+an error.  Was caused by patch 7.2.132.
 
 
  vim:tw=78:ts=8:ft=help:norl:
--- a/runtime/ftplugin/perl6.vim
+++ b/runtime/ftplugin/perl6.vim
@@ -40,25 +40,6 @@ setlocal define=[^A-Za-z_]
 "       set isfname-=:
 set isfname+=:
 
-" Set this once, globally.
-if !exists("perl6path")
-    if executable("perl6")
-	if &shellxquote != '"'
-	    let perl6path = system('perl6 -e "print join(q/,/,@*INC)"')
-	else
-	    let perl6path = system("perl6 -e 'print join(q/,/,@*INC)'")
-	endif
-	let perl6path = substitute(perl6path,',.$',',,','')
-    else
-	" If we can't call perl6 to get its path, just default to using the
-	" current directory and the directory of the current file.
-	let perl6path = ".,,"
-    endif
-endif
-
-let &l:path=perl6path
-"---------------------------------------------
-
 " Undo the stuff we changed.
 let b:undo_ftplugin = "setlocal fo< com< cms< inc< inex< def< isk<" .
 	    \         " | unlet! b:browsefilter"