summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBram Moolenaar <bram@vim.org>2010-08-14 21:57:32 +0200
committerBram Moolenaar <bram@vim.org>2010-08-14 21:57:32 +0200
commit77034eb005506ed6e892c39d8291e513407cde19 (patch)
treec3758babad8a1ae3bf54a235bafd5c06d2ecd839
parent511e31c3221664a9f983130f5f2687fcbd414050 (diff)
downloadvim-77034eb005506ed6e892c39d8291e513407cde19.tar.gz
Runtime file updates.
-rw-r--r--runtime/doc/todo.txt4
-rw-r--r--runtime/doc/version7.txt9
-rw-r--r--runtime/ftplugin/perl6.vim19
3 files changed, 10 insertions, 22 deletions
diff --git a/runtime/doc/todo.txt b/runtime/doc/todo.txt
index 920dc8a2..a86c5ad9 100644
--- a/runtime/doc/todo.txt
+++ b/runtime/doc/todo.txt
@@ -33,12 +33,12 @@ be worked on, but only if you sponsor Vim development. See |sponsor|.
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,
diff --git a/runtime/doc/version7.txt b/runtime/doc/version7.txt
index 4bc61433..bd544f06 100644
--- a/runtime/doc/version7.txt
+++ b/runtime/doc/version7.txt
@@ -7199,6 +7199,9 @@ The help files conceal characters used to mark tags and examples.
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 Jelenak)
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. (Dominique Pelle)
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:
diff --git a/runtime/ftplugin/perl6.vim b/runtime/ftplugin/perl6.vim
index 49d829b7..14ab1e9c 100644
--- 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"