Skip to content

Commit b7efeda

Browse files
committed
Updated runtime files. Fix NL translations.
1 parent 921d696 commit b7efeda

File tree

20 files changed

+3299
-4116
lines changed

20 files changed

+3299
-4116
lines changed

runtime/compiler/checkstyle.vim

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
" Vim compiler file
22
" Compiler: Checkstyle
3-
" Maintainer: Doug Kearns <[email protected]>
4-
" URL: http://gus.gscit.monash.edu.au/~djkea2/vim/compiler/checkstyle.vim
5-
" Last Change: 2004 Nov 27
3+
" Maintainer: Doug Kearns <[email protected]>
4+
" Last Change: 2013 Jun 26
65

76
if exists("current_compiler")
87
finish
@@ -17,4 +16,4 @@ CompilerSet makeprg=java\ com.puppycrawl.tools.checkstyle.Main\ -f\ plain
1716

1817
" sample error: WebTable.java:282: '+=' is not preceeded with whitespace.
1918
" WebTable.java:201:1: '{' should be on the previous line.
20-
CompilerSet errorformat=%f:%l:\ %m,%f:%l:%v:\ %m,%-G%.%#
19+
CompilerSet errorformat=%f:%l:%v:\ %m,%f:%l:\ %m,%-G%.%#

runtime/compiler/javac.vim

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
" Vim compiler file
2-
" Compiler: javac
3-
" Maintainer: Doug Kearns <[email protected]>
4-
" URL: http://gus.gscit.monash.edu.au/~djkea2/vim/compiler/javac.vim
5-
" Last Change: 2004 Nov 27
2+
" Compiler: javac
3+
" Maintainer: Doug Kearns <[email protected]>
4+
" Last Change: 2004 Nov 27
65

76
if exists("current_compiler")
87
finish

runtime/compiler/php.vim

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
" Vim compiler file
2-
" Compiler: PHP
3-
" Maintainer: Doug Kearns <[email protected]>
4-
" URL: http://gus.gscit.monash.edu.au/~djkea2/vim/compiler/php.vim
5-
" Last Change: 2004 Nov 27
2+
" Compiler: PHP CLI
3+
" Maintainer: Doug Kearns <[email protected]>
4+
" Last Change: 2013 Jun 25
65

76
if exists("current_compiler")
87
finish
@@ -17,12 +16,11 @@ let s:cpo_save = &cpo
1716
set cpo-=C
1817

1918
CompilerSet makeprg=php\ -lq
20-
21-
CompilerSet errorformat=%E<b>Parse\ error</b>:\ %m\ in\ <b>%f</b>\ on\ line\ <b>%l</b><br\ />,
22-
\%W<b>Notice</b>:\ %m\ in\ <b>%f</b>\ on\ line\ <b>%l</b><br\ />,
23-
\%EParse\ error:\ %m\ in\ %f\ on\ line\ %l,
24-
\%WNotice:\ %m\ in\ %f</b>\ on\ line\ %l,
25-
\%-G%.%#
19+
CompilerSet errorformat=%E<b>%.%#Parse\ error</b>:\ %m\ in\ <b>%f</b>\ on\ line\ <b>%l</b><br\ />,
20+
\%W<b>%.%#Notice</b>:\ %m\ in\ <b>%f</b>\ on\ line\ <b>%l</b><br\ />,
21+
\%E%.%#Parse\ error:\ %m\ in\ %f\ on\ line\ %l,
22+
\%W%.%#Notice:\ %m\ in\ %f\ on\ line\ %l,
23+
\%-G%.%#
2624

2725
let &cpo = s:cpo_save
2826
unlet s:cpo_save

runtime/compiler/se.vim

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
" Vim compiler file
2-
" Compiler: se (SmartEiffel Compiler)
3-
" Maintainer: Doug Kearns <[email protected]>
4-
" URL: http://gus.gscit.monash.edu.au/~djkea2/vim/compiler/se.vim
5-
" Last Change: 2004 Nov 27
2+
" Compiler: se (Liberty Eiffel Compiler)
3+
" Maintainer: Doug Kearns <[email protected]>
4+
" Last Change: 2013 Jun 29
65

76
if exists("current_compiler")
87
finish
@@ -16,12 +15,15 @@ endif
1615
let s:cpo_save = &cpo
1716
set cpo-=C
1817

19-
CompilerSet makeprg=compile\ %
18+
CompilerSet makeprg=se\ c
2019

2120
CompilerSet errorformat=%W******\ Warning:\ %m,
2221
\%E******\ Fatal\ Error:\ %m,
2322
\%E******\ Error:\ %m,
24-
\%CLine\ %l\ column\ %c\ in\ %\\w%\\+\ (%f)\ :,
23+
\%ZLine\ %l\ column\ %c\ in\ %.%#\ (%f)\ %\\=:,
24+
\%ZLine\ %l\ columns\ %c\\,\ %\\d%\\+\ %.%#\ (%f)\ %\\=:,
25+
\%+C%*[^\ ]%.%#,
26+
\%-GThe\ source\ lines\ involved,
2527
\%-G%.%#
2628

2729
let &cpo = s:cpo_save

runtime/compiler/tcl.vim

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
" Vim compiler file
22
" Compiler: tcl
3-
" Maintainer: Doug Kearns <[email protected]>
4-
" URL: http://gus.gscit.monash.edu.au/~djkea2/vim/compiler/tcl.vim
3+
" Maintainer: Doug Kearns <[email protected]>
54
" Last Change: 2004 Nov 27
65

76
if exists("current_compiler")

runtime/compiler/tidy.vim

Lines changed: 3 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,7 @@
11
" Vim compiler file
22
" Compiler: HTML Tidy
3-
" Maintainer: Doug Kearns <[email protected]>
4-
" URL: http://gus.gscit.monash.edu.au/~djkea2/vim/compiler/tidy.vim
5-
" Last Change: 2004 Nov 27
6-
7-
" NOTE: set 'tidy_compiler_040800' if you are using the 4th August 2000 release
8-
" of HTML Tidy.
3+
" Maintainer: Doug Kearns <[email protected]>
4+
" Last Change: 2013 Jul 7
95

106
if exists("current_compiler")
117
finish
@@ -16,13 +12,7 @@ if exists(":CompilerSet") != 2 " older Vim always used :setlocal
1612
command -nargs=* CompilerSet setlocal <args>
1713
endif
1814

19-
" this is needed to work around a bug in the 04/08/00 release of tidy which
20-
" failed to set the filename if the -quiet option was used
21-
if exists("tidy_compiler_040800")
22-
CompilerSet makeprg=tidy\ -errors\ --gnu-emacs\ yes\ %
23-
else
24-
CompilerSet makeprg=tidy\ -quiet\ -errors\ --gnu-emacs\ yes\ %
25-
endif
15+
CompilerSet makeprg=tidy\ -quiet\ -errors\ --gnu-emacs\ yes\ %
2616

2717
" sample warning: foo.html:8:1: Warning: inserting missing 'foobar' element
2818
" sample error: foo.html:9:2: Error: <foobar> is not recognized!

runtime/compiler/xmllint.vim

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
" Vim compiler file
22
" Compiler: xmllint
33
" Maintainer: Doug Kearns <[email protected]>
4-
" Last Change: 2013 Jun 1
4+
" Last Change: 2013 Jul 8
55

66
if exists("current_compiler")
77
finish
@@ -15,7 +15,7 @@ endif
1515
let s:cpo_save = &cpo
1616
set cpo-=C
1717

18-
CompilerSet makeprg=xmllint\ --valid\ --noout\
18+
CompilerSet makeprg=xmllint\ --valid\ --noout
1919

2020
CompilerSet errorformat=%+E%f:%l:\ %.%#\ error\ :\ %m,
2121
\%+W%f:%l:\ %.%#\ warning\ :\ %m,

runtime/doc/diff.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*diff.txt* For Vim version 7.4a. Last change: 2012 Sep 05
1+
*diff.txt* For Vim version 7.4a. Last change: 2013 Jul 07
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -128,9 +128,9 @@ file for a moment and come back to the same file and be in diff mode again.
128128
:diffo[ff]! Switch off diff mode for the current window and in all windows
129129
in the current tab page where 'diff' is set.
130130

131-
The ":diffoff" command resets the relevant options to their default value.
132-
This may be different from what the values were before diff mode was started,
133-
the old values are not remembered.
131+
The ":diffoff" command resets the relevant options to the values they had when
132+
using |:diffsplit|, |:diffpatch| , |:diffthis|. or starting Vim in diff mode.
133+
Otherwise they are set to their default value:
134134

135135
'diff' off
136136
'scrollbind' off

runtime/doc/options.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*options.txt* For Vim version 7.4a. Last change: 2013 Jun 29
1+
*options.txt* For Vim version 7.4a. Last change: 2013 Jul 07
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -4646,7 +4646,7 @@ A jump table for the options with a short description can be found at |Q_op|.
46464646
The cursor is displayed at the start of the space a Tab character
46474647
occupies, not at the end as usual in Normal mode. To get this cursor
46484648
position while displaying Tabs with spaces, use: >
4649-
:set list lcs=tab\ \
4649+
:set list lcs=tab:\ \
46504650
<
46514651
Note that list mode will also affect formatting (set with 'textwidth'
46524652
or 'wrapmargin') when 'cpoptions' includes 'L'. See 'listchars' for

runtime/doc/todo.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*todo.txt* For Vim version 7.4a. Last change: 2013 Jul 06
1+
*todo.txt* For Vim version 7.4a. Last change: 2013 Jul 08
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -36,6 +36,8 @@ not be repeated below, unless there is extra information.
3636

3737
Python: ":py raw_input('prompt')" doesn't work. (Manu Hack)
3838

39+
Patch to add "acl" and "xpm" as a feature. (Ken Takata, 2013 Jul 8)
40+
3941
Patch to make has() check for Vim version and patch at the same time.
4042
(Marc Weber, 2013 Jun 7)
4143

0 commit comments

Comments
 (0)