diff options
author | Bram Moolenaar <Bram@vim.org> | 2010-08-14 21:57:32 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2010-08-14 21:57:32 +0200 |
commit | abf39e880d328c076adcba2ff368f0354b2cbe64 (patch) | |
tree | ca6e68f0ec7669a32aa284c9d181de2a790a670a /runtime | |
parent | e00289df69c80e47e7352a62e0d1beaea2d20b46 (diff) | |
download | vim-abf39e880d328c076adcba2ff368f0354b2cbe64.zip |
Runtime file updates.
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/doc/todo.txt | 4 | ||||
-rw-r--r-- | runtime/doc/version7.txt | 9 | ||||
-rw-r--r-- | runtime/ftplugin/perl6.vim | 19 |
3 files changed, 10 insertions, 22 deletions
diff --git a/runtime/doc/todo.txt b/runtime/doc/todo.txt index 920dc8a28..a86c5ad9c 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 4bc614335..bd544f06f 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 49d829b76..14ab1e9ca 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" |