1
0
forked from aniani/vim

Updated runtile files.

This commit is contained in:
Bram Moolenaar 2010-10-27 18:34:44 +02:00
parent 2d73ff4500
commit 0536570fa2
12 changed files with 85 additions and 96 deletions

View File

@ -1,4 +1,4 @@
*eval.txt* For Vim version 7.3. Last change: 2010 Oct 18 *eval.txt* For Vim version 7.3. Last change: 2010 Oct 27
VIM REFERENCE MANUAL by Bram Moolenaar VIM REFERENCE MANUAL by Bram Moolenaar
@ -4009,7 +4009,7 @@ maparg({name}[, {mode} [, {abbr} [, {dict}]]]) *maparg()*
"lhs" The {lhs} of the mapping. "lhs" The {lhs} of the mapping.
"rhs" The {rhs} of the mapping as typed. "rhs" The {rhs} of the mapping as typed.
"silent" 1 for a |:map-silent| mapping, else 0. "silent" 1 for a |:map-silent| mapping, else 0.
"noremap" 1 if the {rhs} of the mapping is remappable. "noremap" 1 if the {rhs} of the mapping is not remappable.
"expr" 1 for an expression mapping (|:map-<expr>|). "expr" 1 for an expression mapping (|:map-<expr>|).
"buffer" 1 for a buffer local mapping (|:map-local|). "buffer" 1 for a buffer local mapping (|:map-local|).
"mode" Modes for which the mapping is defined. In "mode" Modes for which the mapping is defined. In
@ -4018,8 +4018,8 @@ maparg({name}[, {mode} [, {abbr} [, {dict}]]]) *maparg()*
" " Normal, Visual and Operator-pending " " Normal, Visual and Operator-pending
"!" Insert and Commandline mode "!" Insert and Commandline mode
(|mapmpde-ic|) (|mapmpde-ic|)
"sid" the Script local ID, used for <sid> mappings "sid" The script local ID, used for <sid> mappings
(|<SID>|) (|<SID>|).
The mappings local to the current buffer are checked first, The mappings local to the current buffer are checked first,
then the global mappings. then the global mappings.

View File

@ -1,4 +1,4 @@
*if_ruby.txt* For Vim version 7.3. Last change: 2010 Jul 20 *if_ruby.txt* For Vim version 7.3. Last change: 2010 Oct 27
VIM REFERENCE MANUAL by Shugo Maeda VIM REFERENCE MANUAL by Shugo Maeda
@ -40,6 +40,9 @@ downloading Ruby there.
wasn't compiled in. To avoid errors, see wasn't compiled in. To avoid errors, see
|script-here|. |script-here|.
Command to try it out: >
:ruby print "Hello" # this is a comment
Example Vim script: > Example Vim script: >
function! RedGem() function! RedGem()
@ -187,12 +190,12 @@ $curbuf The current buffer object.
============================================================================== ==============================================================================
6. Dynamic loading *ruby-dynamic* 6. Dynamic loading *ruby-dynamic*
On MS-Windows the Ruby library can be loaded dynamically. The |:version| On MS-Windows and Unix the Ruby library can be loaded dynamically. The
output then includes |+ruby/dyn|. |:version| output then includes |+ruby/dyn|.
This means that Vim will search for the Ruby DLL file only when needed. When This means that Vim will search for the Ruby DLL file or shared library only
you don't use the Ruby interface you don't need it, thus you can use Vim when needed. When you don't use the Ruby interface you don't need it, thus
without this DLL file. you can use Vim even though this library file is not on your system.
You need to install the right version of Ruby for this to work. You can find You need to install the right version of Ruby for this to work. You can find
the package to download from: the package to download from:

View File

@ -1,4 +1,4 @@
*insert.txt* For Vim version 7.3. Last change: 2010 Sep 29 *insert.txt* For Vim version 7.3. Last change: 2010 Oct 27
VIM REFERENCE MANUAL by Bram Moolenaar VIM REFERENCE MANUAL by Bram Moolenaar
@ -382,6 +382,10 @@ mappings it's often better to use <Esc> (first put an "x" in the text, <Esc>
will then always put the cursor on it). Or use CTRL-\ CTRL-O, but then will then always put the cursor on it). Or use CTRL-\ CTRL-O, but then
beware of the cursor possibly being beyond the end of the line. beware of the cursor possibly being beyond the end of the line.
The CTRL-O command takes you to Normal mode. If you then use a command enter
Insert mode again it doesn't nest. Thus when typing "a<C-O>a" and then <Esc>
takes you back to Normal mode, you do not need to type <Esc> twice.
The shifted cursor keys are not available on all terminals. The shifted cursor keys are not available on all terminals.
Another side effect is that a count specified before the "i" or "a" command is Another side effect is that a count specified before the "i" or "a" command is
@ -1043,7 +1047,8 @@ be relatively short. The "info" item can be longer, it will be displayed in
the preview window when "preview" appears in 'completeopt'. The "info" item the preview window when "preview" appears in 'completeopt'. The "info" item
will also remain displayed after the popup menu has been removed. This is will also remain displayed after the popup menu has been removed. This is
useful for function arguments. Use a single space for "info" to remove useful for function arguments. Use a single space for "info" to remove
existing text in the preview window. existing text in the preview window. The size of the preview window is three
lines, but 'previewheight' is used when it has a value of 1 or 2.
The "kind" item uses a single letter to indicate the kind of completion. This The "kind" item uses a single letter to indicate the kind of completion. This
may be used to show the completion differently (different color or icon). may be used to show the completion differently (different color or icon).

View File

@ -1,4 +1,4 @@
*options.txt* For Vim version 7.3. Last change: 2010 Oct 20 *options.txt* For Vim version 7.3. Last change: 2010 Oct 23
VIM REFERENCE MANUAL by Bram Moolenaar VIM REFERENCE MANUAL by Bram Moolenaar
@ -3089,6 +3089,10 @@ A jump table for the options with a short description can be found at |Q_op|.
Specifies for which type of commands folds will be opened, if the Specifies for which type of commands folds will be opened, if the
command moves the cursor into a closed fold. It is a comma separated command moves the cursor into a closed fold. It is a comma separated
list of items. list of items.
NOTE: When the command is part of a mapping this option is not used.
Add the |zv| command to the mapping to get the same effect.
(rationale: the mapping may want to control opening folds itself)
item commands ~ item commands ~
all any all any
block "(", "{", "[[", "[{", etc. block "(", "{", "[[", "[{", etc.
@ -3103,8 +3107,6 @@ A jump table for the options with a short description can be found at |Q_op|.
Also for |[s| and |]s|. Also for |[s| and |]s|.
tag jumping to a tag: ":ta", CTRL-T, etc. tag jumping to a tag: ":ta", CTRL-T, etc.
undo undo or redo: "u" and CTRL-R undo undo or redo: "u" and CTRL-R
When the command is part of a mapping this option is not used. Add
the |zv| command to the mapping to get the same effect.
When a movement command is used for an operator (e.g., "dl" or "y%") When a movement command is used for an operator (e.g., "dl" or "y%")
this option is not used. This means the operator will include the this option is not used. This means the operator will include the
whole closed fold. whole closed fold.

View File

@ -8086,6 +8086,7 @@ v:val eval.txt /*v:val*
v:var eval.txt /*v:var* v:var eval.txt /*v:var*
v:version eval.txt /*v:version* v:version eval.txt /*v:version*
v:warningmsg eval.txt /*v:warningmsg* v:warningmsg eval.txt /*v:warningmsg*
v:windowid eval.txt /*v:windowid*
v_! change.txt /*v_!* v_! change.txt /*v_!*
v_$ visual.txt /*v_$* v_$ visual.txt /*v_$*
v_: cmdline.txt /*v_:* v_: cmdline.txt /*v_:*
@ -8360,6 +8361,7 @@ window-size term.txt /*window-size*
window-size-functions usr_41.txt /*window-size-functions* window-size-functions usr_41.txt /*window-size-functions*
window-tag windows.txt /*window-tag* window-tag windows.txt /*window-tag*
window-variable eval.txt /*window-variable* window-variable eval.txt /*window-variable*
windowid-variable eval.txt /*windowid-variable*
windows windows.txt /*windows* windows windows.txt /*windows*
windows-3.1 os_win32.txt /*windows-3.1* windows-3.1 os_win32.txt /*windows-3.1*
windows-intro windows.txt /*windows-intro* windows-intro windows.txt /*windows-intro*

View File

@ -1,4 +1,4 @@
*todo.txt* For Vim version 7.3. Last change: 2010 Oct 20 *todo.txt* For Vim version 7.3. Last change: 2010 Oct 27
VIM REFERENCE MANUAL by Bram Moolenaar VIM REFERENCE MANUAL by Bram Moolenaar
@ -30,6 +30,8 @@ be worked on, but only if you sponsor Vim development. See |sponsor|.
*known-bugs* *known-bugs*
-------------------- Known bugs and current work ----------------------- -------------------- Known bugs and current work -----------------------
Segfault with command line abbreviation. (Randy Morris, 2010 Oct 25)
'cursorline' is displayed too short when there are concealed characters and 'cursorline' is displayed too short when there are concealed characters and
'list' is set, 'listchars' at default value. (Dennis Preiser, 2010 Aug 15) 'list' is set, 'listchars' at default value. (Dennis Preiser, 2010 Aug 15)
@ -45,16 +47,8 @@ Windows keys not set properly on Windows 7? (cncyber, 2010 Aug 26)
This line hangs Vim, because of syntax HL: This line hangs Vim, because of syntax HL:
call append(line, "INFO ....12....18....24....30....36....42....48....54....60....66....72....78%$") call append(line, "INFO ....12....18....24....30....36....42....48....54....60....66....72....78%$")
Patch to add v:windowid. (Christian J. Robinson, 2010 Oct 13, update by Lech
Lorens, Oct 14)
maparg() doesn't return the flags, such as <buffer>, <script>, <silent>.
These are needed to save and restore a mapping.
Also: the rhs string is not always correct. (Hari Krishna Dara, 2009 Sept 29)
Patch by Christian Brabandt, 2010 Sep 17.
Building the MingW version without clipboard but with multi-byte doesn't Building the MingW version without clipboard but with multi-byte doesn't
build. (Bill Lam, 2010 Sep 18) work. (Bill Lam, 2010 Sep 18)
Bug: E685 error for func_unref(). (ZyX, 2010 Aug 5) Bug: E685 error for func_unref(). (ZyX, 2010 Aug 5)
@ -62,17 +56,12 @@ Using ":break" or something else that stops executing commands inside a
":finally" does not rethrow a previously uncaught exception. (ZyX, 2010 Oct ":finally" does not rethrow a previously uncaught exception. (ZyX, 2010 Oct
15) 15)
Patch to fix warning for accessing mediumVersion. (Dominique Pelle, 2010 Aug
18)
Patch for 2html to support 'fileencoding'. (Benjamin Fritz, 2010 Sep 10) Patch for 2html to support 'fileencoding'. (Benjamin Fritz, 2010 Sep 10)
Beta testing finished now?
Patch to use 'previewheight' for popup menu. (Benjamin Haskell, 2010 Sep 29)
Three patches for undo persistence. (Christian Brabandt, 2010 Sep 4) Three patches for undo persistence. (Christian Brabandt, 2010 Sep 4)
ml_get error for using :copen in a custom complete function. (Xavier Patch to adjust mzscheme to support racket. (Sergey Khorev, 2010 Oct 24)
Deguillard, 2010 Oct 19) Other way to reproduce it by Lech Lorens, Oct 20.
string() can't parse back "inf" and "nan". Fix documentation or fix code? string() can't parse back "inf" and "nan". Fix documentation or fix code?
(ZyX, 2010 Aug 23) (ZyX, 2010 Aug 23)
@ -80,8 +69,14 @@ string() can't parse back "inf" and "nan". Fix documentation or fix code?
Patch to use "--as-needed" instead of the link.sh functionality. (Kirill A. Patch to use "--as-needed" instead of the link.sh functionality. (Kirill A.
Shutemov, 2010 Aug 25) Shutemov, 2010 Aug 25)
ml_get error for using :copen in a custom complete function. (Xavier
Deguillard, 2010 Oct 19) Other way to reproduce it by Lech Lorens, Oct 20.
Patch from Lech: Oct 20. More problems from Lech, Oct 21.
Patch to fix complete(). (Kikuchan, 2010 Oct 15) Patch to fix complete(). (Kikuchan, 2010 Oct 15)
maparg() does not show the <script> flag. How to restore the script ID?
Ruby: Patch to load Gem module. Why is this needed? (Yasuhiro Matsumoto, 2010 Ruby: Patch to load Gem module. Why is this needed? (Yasuhiro Matsumoto, 2010
Oct 6) Oct 6)
@ -102,8 +97,11 @@ it: Pablo Contreras, 2010 Oct 12 Windows XP and 7. Font is never freed?
GTK: drawing a double-width combining character over single-width characters GTK: drawing a double-width combining character over single-width characters
doesn't look right. (Dominique Pelle, 2010 Aug 8) doesn't look right. (Dominique Pelle, 2010 Aug 8)
GTK: tear-off menu does not work. (Kurt Sonnenmoser, 2010 Oct 25)
Using ":call" inside "if 0" does not see that a function returns a Dict and Using ":call" inside "if 0" does not see that a function returns a Dict and
gives error for "." as string concatenation. (Yasuhiro Matsumoto, 2010 Oct 20) gives error for "." as string concatenation. (Yasuhiro Matsumoto, 2010 Oct 20)
Patch: Oct 20.
Copy/paste between Vim and Google chrome doesn't work well for multi-byte Copy/paste between Vim and Google chrome doesn't work well for multi-byte
characters. (Ben Haskell, 2010 Sep 17) characters. (Ben Haskell, 2010 Sep 17)
@ -128,13 +126,23 @@ Included, but also need a change to configure.
setpos() does not restore cursor position after :normal. (Tyru, 2010 Aug 11) setpos() does not restore cursor position after :normal. (Tyru, 2010 Aug 11)
7 The 'directory' option supports changing path separators to "%" to make
file names unique, also support this for 'backupdir'. (Mikolaj Machowski)
Patch by Christian Brabandt, 2010 Oct 21.
getpos()/setpos() don't include curswant. getpos() could return a fifth getpos()/setpos() don't include curswant. getpos() could return a fifth
element. setpos() could accept an optional fifth element. element. setpos() could accept an optional fifth element.
Patch by Christian Brabandt, 2010 Sep 6. Check that new argument is optional Patch by Christian Brabandt, 2010 Sep 6. Check that new argument is optional
and that it's documented. and that it's documented.
With "tw=55 fo+=a" typing space before ) doesn't work well. (Scott Mcdermott,
2010 Oct 24)
Messages in message.txt are highlighted as examples. Messages in message.txt are highlighted as examples.
When using cp850 the NBSP (0xff) is not drawn correctly. (Brett Stahlman, 2010
Oct 22) 'isprint' is set to "@,161-255".
Test 73 fails on MS-Windows when compiled with DJGPP and run twice. How to Test 73 fails on MS-Windows when compiled with DJGPP and run twice. How to
delete the Xfind directory? Add an rmdir() function, just like we have delete the Xfind directory? Add an rmdir() function, just like we have
mkdir(). mkdir().
@ -1879,11 +1887,6 @@ Macintosh:
works. works.
8 A very long message in confirm() can't be quit. Make this possible with 8 A very long message in confirm() can't be quit. Make this possible with
CTRL-C. CTRL-C.
7 clip_x11_own_selection() uses CurrentTime, that is not allowed. VNC X
server has a problem with this. (Mark Waggoner) Remembering the timestamp
of events isn't always possible. We don't get them in an xterm. GTK
doesn't obtain the selection again when the timestamp differs, thus it
won't work for GTK anyway.
8 When the clipboard isn't supported: ":yank*" gives a confusing error 8 When the clipboard isn't supported: ":yank*" gives a confusing error
message. Specifically mention that the register name is invalid. message. Specifically mention that the register name is invalid.
8 "gf" always excludes trailing punctuation characters. file_name_in_line() 8 "gf" always excludes trailing punctuation characters. file_name_in_line()
@ -4278,8 +4281,6 @@ Writing files:
8 'backupskip' doesn't write a backup file at all, a bit dangerous for some 8 'backupskip' doesn't write a backup file at all, a bit dangerous for some
applications. Add 'backupelsewhere' to write a backup file in another applications. Add 'backupelsewhere' to write a backup file in another
directory? Or add a flag to 'backupdir'? directory? Or add a flag to 'backupdir'?
7 The 'directory' option supports changing path separators to "%" to make
file names unique, also support this for 'backupdir'. (Mikolaj Machowski)
6 Add an option to write a new, numbered, backup file each time. Like 6 Add an option to write a new, numbered, backup file each time. Like
'patchmode', e.g., 'backupmode'. 'patchmode', e.g., 'backupmode'.
6 Make it possible to write 'patchmode' files to a different directory. 6 Make it possible to write 'patchmode' files to a different directory.

View File

@ -1,4 +1,4 @@
*undo.txt* For Vim version 7.3. Last change: 2010 Sep 30 *undo.txt* For Vim version 7.3. Last change: 2010 Oct 21
VIM REFERENCE MANUAL by Bram Moolenaar VIM REFERENCE MANUAL by Bram Moolenaar
@ -239,7 +239,9 @@ Vim saves undo trees in a separate undo file, one for each edited file, using
a simple scheme that maps filesystem paths directly to undo files. Vim will a simple scheme that maps filesystem paths directly to undo files. Vim will
detect if an undo file is no longer synchronized with the file it was written detect if an undo file is no longer synchronized with the file it was written
for (with a hash of the file contents) and ignore it when the file was changed for (with a hash of the file contents) and ignore it when the file was changed
after the undo file was written, to prevent corruption. after the undo file was written, to prevent corruption. An undo file is also
ignored if its owner differs from the owner of the edited file. Set 'verbose'
to get a message about that.
Undo files are normally saved in the same directory as the file. This can be Undo files are normally saved in the same directory as the file. This can be
changed with the 'undodir' option. changed with the 'undodir' option.

View File

@ -3,8 +3,8 @@
" Maintainer: Debian Vim Maintainers <pkg-vim-maintainers@lists.alioth.debian.org> " Maintainer: Debian Vim Maintainers <pkg-vim-maintainers@lists.alioth.debian.org>
" Former Maintainers: Gerfried Fuchs <alfie@ist.org> " Former Maintainers: Gerfried Fuchs <alfie@ist.org>
" Wichert Akkerman <wakkerma@debian.org> " Wichert Akkerman <wakkerma@debian.org>
" Last Change: 2010 May 06 " Last Change: 2010 Oct 21
" URL: http://hg.debian.org/hg/pkg-vim/vim/raw-file/tip/runtime/syntax/debchangelog.vim " URL: http://hg.debian.org/hg/pkg-vim/vim/raw-file/unstable/runtime/syntax/debchangelog.vim
" Standard syntax initialization " Standard syntax initialization
if version < 600 if version < 600
@ -19,7 +19,7 @@ syn case ignore
" Define some common expressions we can use later on " Define some common expressions we can use later on
syn match debchangelogName contained "^[[:alnum:]][[:alnum:].+-]\+ " syn match debchangelogName contained "^[[:alnum:]][[:alnum:].+-]\+ "
syn match debchangelogUrgency contained "; urgency=\(low\|medium\|high\|critical\|emergency\)\( \S.*\)\=" syn match debchangelogUrgency contained "; urgency=\(low\|medium\|high\|critical\|emergency\)\( \S.*\)\="
syn match debchangelogTarget contained "\v %(frozen|unstable|%(testing|%(old)=stable)%(-proposed-updates|-security)=|experimental|%(etch|lenny)-%(backports|volatile)|%(dapper|hardy|jaunty|karmic|lucid|maverick)%(-%(security|proposed|updates|backports|commercial|partner))=)+" syn match debchangelogTarget contained "\v %(frozen|unstable|%(testing|%(old)=stable)%(-proposed-updates|-security)=|experimental|%(lenny|squeeze)-%(backports%(-sloppy)=|volatile)|%(dapper|hardy|jaunty|karmic|lucid|maverick|natty)%(-%(security|proposed|updates|backports|commercial|partner))=)+"
syn match debchangelogVersion contained "(.\{-})" syn match debchangelogVersion contained "(.\{-})"
syn match debchangelogCloses contained "closes:\_s*\(bug\)\=#\=\_s\=\d\+\(,\_s*\(bug\)\=#\=\_s\=\d\+\)*" syn match debchangelogCloses contained "closes:\_s*\(bug\)\=#\=\_s\=\d\+\(,\_s*\(bug\)\=#\=\_s\=\d\+\)*"
syn match debchangelogLP contained "\clp:\s\+#\d\+\(,\s*#\d\+\)*" syn match debchangelogLP contained "\clp:\s\+#\d\+\(,\s*#\d\+\)*"

View File

@ -3,8 +3,8 @@
" Maintainer: Debian Vim Maintainers <pkg-vim-maintainers@lists.alioth.debian.org> " Maintainer: Debian Vim Maintainers <pkg-vim-maintainers@lists.alioth.debian.org>
" Former Maintainers: Gerfried Fuchs <alfie@ist.org> " Former Maintainers: Gerfried Fuchs <alfie@ist.org>
" Wichert Akkerman <wakkerma@debian.org> " Wichert Akkerman <wakkerma@debian.org>
" Last Change: 2009 Aug 17 " Last Change: 2010 Oct 21
" URL: http://hg.debian.org/hg/pkg-vim/vim/raw-file/tip/runtime/syntax/debcontrol.vim " URL: http://hg.debian.org/hg/pkg-vim/vim/raw-file/unstable/runtime/syntax/debcontrol.vim
" Standard syntax initialization " Standard syntax initialization
if version < 600 if version < 600
@ -27,7 +27,7 @@ syn match debControlSpace " "
syn match debcontrolArchitecture contained "\%(all\|any\|alpha\|amd64\|arm\%(e[bl]\)\=\|avr32\|hppa\|i386\|ia64\|lpia\|m32r\|m68k\|mips\%(el\)\=\|powerpc\|ppc64\|s390x\=\|sh[34]\(eb\)\=\|sh\|sparc\%(64\)\=\|hurd-i386\|kfreebsd-\%(i386\|amd64\|gnu\)\|knetbsd-i386\|kopensolaris-i386\|netbsd-\%(alpha\|i386\)\)" syn match debcontrolArchitecture contained "\%(all\|any\|alpha\|amd64\|arm\%(e[bl]\)\=\|avr32\|hppa\|i386\|ia64\|lpia\|m32r\|m68k\|mips\%(el\)\=\|powerpc\|ppc64\|s390x\=\|sh[34]\(eb\)\=\|sh\|sparc\%(64\)\=\|hurd-i386\|kfreebsd-\%(i386\|amd64\|gnu\)\|knetbsd-i386\|kopensolaris-i386\|netbsd-\%(alpha\|i386\)\)"
syn match debcontrolName contained "[a-z0-9][a-z0-9+.-]\+" syn match debcontrolName contained "[a-z0-9][a-z0-9+.-]\+"
syn match debcontrolPriority contained "\(extra\|important\|optional\|required\|standard\)" syn match debcontrolPriority contained "\(extra\|important\|optional\|required\|standard\)"
syn match debcontrolSection contained "\v((contrib|non-free|non-US/main|non-US/contrib|non-US/non-free|restricted|universe|multiverse)/)?(admin|cli-mono|comm|database|debian-installer|debug|devel|doc|editors|electronics|embedded|fonts|games|gnome|gnustep|gnu-r|graphics|hamradio|haskell|httpd|interpreters|java|kde|kernel|libs|libdevel|lisp|localization|mail|math|misc|net|news|ocaml|oldlibs|otherosfs|perl|php|python|ruby|science|shells|sound|text|tex|utils|vcs|video|web|x11|xfce|zope)" syn match debcontrolSection contained "\v((contrib|non-free|non-US/main|non-US/contrib|non-US/non-free|restricted|universe|multiverse)/)?(admin|cli-mono|comm|database|debian-installer|debug|devel|doc|editors|electronics|embedded|fonts|games|gnome|gnustep|gnu-r|graphics|hamradio|haskell|httpd|interpreters|java|kde|kernel|libs|libdevel|lisp|localization|mail|math|metapackages|misc|net|news|ocaml|oldlibs|otherosfs|perl|php|python|ruby|science|shells|sound|text|tex|utils|vcs|video|web|x11|xfce|zope)"
syn match debcontrolPackageType contained "u\?deb" syn match debcontrolPackageType contained "u\?deb"
syn match debcontrolVariable contained "\${.\{-}}" syn match debcontrolVariable contained "\${.\{-}}"
syn match debcontrolDmUpload contained "\cyes" syn match debcontrolDmUpload contained "\cyes"

View File

@ -2,8 +2,8 @@
" Language: Debian sources.list " Language: Debian sources.list
" Maintainer: Debian Vim Maintainers <pkg-vim-maintainers@lists.alioth.debian.org> " Maintainer: Debian Vim Maintainers <pkg-vim-maintainers@lists.alioth.debian.org>
" Former Maintainer: Matthijs Mohlmann <matthijs@cacholong.nl> " Former Maintainer: Matthijs Mohlmann <matthijs@cacholong.nl>
" Last Change: 2010 May 06 " Last Change: 2010 Oct 21
" URL: http://hg.debian.org/hg/pkg-vim/vim/raw-file/tip/runtime/syntax/debsources.vim " URL: http://hg.debian.org/hg/pkg-vim/vim/raw-file/unstable/runtime/syntax/debsources.vim
" Standard syntax initialization " Standard syntax initialization
if version < 600 if version < 600
@ -23,7 +23,7 @@ syn match debsourcesComment /#.*/ contains=@Spell
" Match uri's " Match uri's
syn match debsourcesUri +\(http://\|ftp://\|[rs]sh://\|debtorrent://\|\(cdrom\|copy\|file\):\)[^' <>"]\++ syn match debsourcesUri +\(http://\|ftp://\|[rs]sh://\|debtorrent://\|\(cdrom\|copy\|file\):\)[^' <>"]\++
syn match debsourcesDistrKeyword +\([[:alnum:]_./]*\)\(etch\|lenny\|squeeze\|\(old\)\=stable\|testing\|unstable\|sid\|rc-buggy\|experimental\|dapper\|hardy\|jaunty\|karmic\|lucid\|maverick\)\([-[:alnum:]_./]*\)+ syn match debsourcesDistrKeyword +\([[:alnum:]_./]*\)\(lenny\|squeeze\|\(old\)\=stable\|testing\|unstable\|sid\|rc-buggy\|experimental\|dapper\|hardy\|jaunty\|karmic\|lucid\|maverick\|natty\)\([-[:alnum:]_./]*\)+
" Associate our matches and regions with pretty colours " Associate our matches and regions with pretty colours
hi def link debsourcesLine Error hi def link debsourcesLine Error

View File

@ -23,8 +23,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Vim(Esperanto)\n" "Project-Id-Version: Vim(Esperanto)\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-08-06 21:08+0200\n" "POT-Creation-Date: 2010-10-23 21:37+0200\n"
"PO-Revision-Date: 2010-08-06 21:34+0200\n" "PO-Revision-Date: 2010-10-23 21:42+0200\n"
"Last-Translator: Dominique PELLÉ <dominique.pelle@gmail.com>\n" "Last-Translator: Dominique PELLÉ <dominique.pelle@gmail.com>\n"
"Language-Team: \n" "Language-Team: \n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@ -186,7 +186,6 @@ msgstr "Subo"
msgid "Top" msgid "Top"
msgstr "Supro" msgstr "Supro"
#, c-format
msgid "" msgid ""
"\n" "\n"
"# Buffer list:\n" "# Buffer list:\n"
@ -854,7 +853,6 @@ msgstr "Skribas dosieron viminfo \"%s\""
msgid "# This viminfo file was generated by Vim %s.\n" msgid "# This viminfo file was generated by Vim %s.\n"
msgstr "# Tiu dosiero viminfo estis kreita de Vim %s.\n" msgstr "# Tiu dosiero viminfo estis kreita de Vim %s.\n"
#, c-format
msgid "" msgid ""
"# You may edit it if you're careful!\n" "# You may edit it if you're careful!\n"
"\n" "\n"
@ -862,7 +860,6 @@ msgstr ""
"# Vi povas redakti ĝin se vi estas singarda.\n" "# Vi povas redakti ĝin se vi estas singarda.\n"
"\n" "\n"
#, c-format
msgid "# Value of 'encoding' when this file was written\n" msgid "# Value of 'encoding' when this file was written\n"
msgstr "# Valoro de 'encoding' kiam tiu dosiero estis kreita\n" msgstr "# Valoro de 'encoding' kiam tiu dosiero estis kreita\n"
@ -974,7 +971,6 @@ msgstr "E148: Regulesprimo mankas el global"
msgid "Pattern found in every line: %s" msgid "Pattern found in every line: %s"
msgstr "Ŝablono trovita en ĉiuj linioj: %s" msgstr "Ŝablono trovita en ĉiuj linioj: %s"
#, c-format
msgid "" msgid ""
"\n" "\n"
"# Last Substitute String:\n" "# Last Substitute String:\n"
@ -2609,10 +2605,7 @@ msgid "not allowed in the Vim sandbox"
msgstr "nepermesita en sabloludejo de Vim" msgstr "nepermesita en sabloludejo de Vim"
msgid "E836: This Vim cannot execute :python after using :py3" msgid "E836: This Vim cannot execute :python after using :py3"
msgstr "E836: Pitono: Ne eblas uzi :py kaj :py3 en la sama seanco" msgstr "E836: Vim ne povas plenumi :python post uzo de :py3"
msgid "E837: This Vim cannot execute :py3 after using :python"
msgstr "E837: Pitono: Ne eblas uzi :py kaj :py3 en la sama seanco"
msgid "" msgid ""
"E263: Sorry, this command is disabled, the Python library could not be " "E263: Sorry, this command is disabled, the Python library could not be "
@ -2637,6 +2630,9 @@ msgstr "nevalida atributo"
msgid "<buffer object (deleted) at %p>" msgid "<buffer object (deleted) at %p>"
msgstr "<bufra objekto (forviŝita) ĉe %p>" msgstr "<bufra objekto (forviŝita) ĉe %p>"
msgid "E837: This Vim cannot execute :py3 after using :python"
msgstr "E837: Vim ne povas plenumi :py3 post uzo de :python"
msgid "E265: $_ must be an instance of String" msgid "E265: $_ must be an instance of String"
msgstr "E265: $_ devas esti apero de Ĉeno" msgstr "E265: $_ devas esti apero de Ĉeno"
@ -3190,12 +3186,6 @@ msgstr "-display <ekrano>\tLanĉi vim sur <ekrano>"
msgid "-iconic\t\tStart vim iconified" msgid "-iconic\t\tStart vim iconified"
msgstr "-iconic\t\tLanĉi vim piktograme" msgstr "-iconic\t\tLanĉi vim piktograme"
msgid "-name <name>\t\tUse resource as if vim was <name>"
msgstr "-name <nomo>\t\tUzi rimedon kvazaŭ vim estus <nomo>"
msgid "\t\t\t (Unimplemented)\n"
msgstr "\t\t\t (Nerealigita)\n"
msgid "-background <color>\tUse <color> for the background (also: -bg)" msgid "-background <color>\tUse <color> for the background (also: -bg)"
msgstr "-background <koloro>\tUzi <koloro>-n por la fona koloro (ankaŭ: -bg)" msgstr "-background <koloro>\tUzi <koloro>-n por la fona koloro (ankaŭ: -bg)"
@ -3322,7 +3312,6 @@ msgstr ""
"\n" "\n"
"ŝanĝo linio kol teksto" "ŝanĝo linio kol teksto"
#, c-format
msgid "" msgid ""
"\n" "\n"
"# File marks:\n" "# File marks:\n"
@ -3331,7 +3320,6 @@ msgstr ""
"# Markoj de dosiero:\n" "# Markoj de dosiero:\n"
#. Write the jumplist with -' #. Write the jumplist with -'
#, c-format
msgid "" msgid ""
"\n" "\n"
"# Jumplist (newest first):\n" "# Jumplist (newest first):\n"
@ -3339,7 +3327,6 @@ msgstr ""
"\n" "\n"
"# Saltlisto (plej novaj unue):\n" "# Saltlisto (plej novaj unue):\n"
#, c-format
msgid "" msgid ""
"\n" "\n"
"# History of marks within files (newest to oldest):\n" "# History of marks within files (newest to oldest):\n"
@ -4008,7 +3995,6 @@ msgstr "Vim: konservo de dosieroj...\n"
msgid "Vim: Finished.\n" msgid "Vim: Finished.\n"
msgstr "Vim: Finita.\n" msgstr "Vim: Finita.\n"
#, c-format
msgid "ERROR: " msgid "ERROR: "
msgstr "ERARO: " msgstr "ERARO: "
@ -4110,6 +4096,9 @@ msgstr "lego el kontaktoskatolo de Netbeans"
msgid "E658: NetBeans connection lost for buffer %ld" msgid "E658: NetBeans connection lost for buffer %ld"
msgstr "E658: Konekto de NetBeans perdita por bufro %ld" msgstr "E658: Konekto de NetBeans perdita por bufro %ld"
msgid "E838: netbeans is not supported with this GUI"
msgstr "E838: netbeans ne estas subtenata kun tiu grafika interfaco"
msgid "E511: netbeans already connected" msgid "E511: netbeans already connected"
msgstr "E511: nebeans jam konektata" msgstr "E511: nebeans jam konektata"
@ -5379,9 +5368,6 @@ msgstr " liniavancoj"
msgid "E395: contains argument not accepted here" msgid "E395: contains argument not accepted here"
msgstr "E395: La argumento \"contains\" ne akcepteblas tie" msgstr "E395: La argumento \"contains\" ne akcepteblas tie"
msgid "E396: containedin argument not accepted here"
msgstr "E396: La argumento \"containedin\" ne akcepteblas tie"
msgid "E393: group[t]here not accepted here" msgid "E393: group[t]here not accepted here"
msgstr "E393: La argumento \"group[t]here\" ne akcepteblas tie" msgstr "E393: La argumento \"group[t]here\" ne akcepteblas tie"

View File

@ -15,8 +15,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Vim(Français)\n" "Project-Id-Version: Vim(Français)\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-08-06 21:08+0200\n" "POT-Creation-Date: 2010-10-23 21:37+0200\n"
"PO-Revision-Date: 2010-08-06 21:31+0200\n" "PO-Revision-Date: 2010-10-23 21:41+0200\n"
"Last-Translator: Dominique Pellé <dominique.pelle@gmail.com>\n" "Last-Translator: Dominique Pellé <dominique.pelle@gmail.com>\n"
"Language-Team: \n" "Language-Team: \n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@ -201,7 +201,6 @@ msgstr "Bas"
msgid "Top" msgid "Top"
msgstr "Haut" msgstr "Haut"
#, c-format
msgid "" msgid ""
"\n" "\n"
"# Buffer list:\n" "# Buffer list:\n"
@ -979,7 +978,6 @@ msgid "# This viminfo file was generated by Vim %s.\n"
msgstr "# Ce fichier viminfo a été généré par Vim %s.\n" msgstr "# Ce fichier viminfo a été généré par Vim %s.\n"
# AB - Les deux versions, bien que différentes, se valent. # AB - Les deux versions, bien que différentes, se valent.
#, c-format
msgid "" msgid ""
"# You may edit it if you're careful!\n" "# You may edit it if you're careful!\n"
"\n" "\n"
@ -987,7 +985,6 @@ msgstr ""
"# Vous pouvez l'éditer, mais soyez prudent.\n" "# Vous pouvez l'éditer, mais soyez prudent.\n"
"\n" "\n"
#, c-format
msgid "# Value of 'encoding' when this file was written\n" msgid "# Value of 'encoding' when this file was written\n"
msgstr "# 'encoding' dans lequel ce fichier a été écrit\n" msgstr "# 'encoding' dans lequel ce fichier a été écrit\n"
@ -1135,7 +1132,6 @@ msgstr "Motif trouv
# à internationalisation. J'attends que les deux autres messages soient # à internationalisation. J'attends que les deux autres messages soient
# traduisibles pour traduire celui-ci. # traduisibles pour traduire celui-ci.
# DB - TODO : Qu'en est-il à présent ? # DB - TODO : Qu'en est-il à présent ?
#, c-format
msgid "" msgid ""
"\n" "\n"
"# Last Substitute String:\n" "# Last Substitute String:\n"
@ -2828,10 +2824,8 @@ msgid "not allowed in the Vim sandbox"
msgstr "non autorisé dans le bac à sable" msgstr "non autorisé dans le bac à sable"
msgid "E836: This Vim cannot execute :python after using :py3" msgid "E836: This Vim cannot execute :python after using :py3"
msgstr "E836: Python : impossible d'utiliser :py et :py3 dans la même session" msgstr ""
"E836: Vim ne peut pas exécuter :python après avoir utilisé :py3"
msgid "E837: This Vim cannot execute :py3 after using :python"
msgstr "E837: Python : impossible d'utiliser :py et :py3 dans la même session"
msgid "" msgid ""
"E263: Sorry, this command is disabled, the Python library could not be " "E263: Sorry, this command is disabled, the Python library could not be "
@ -2856,6 +2850,10 @@ msgstr "attribut invalide"
msgid "<buffer object (deleted) at %p>" msgid "<buffer object (deleted) at %p>"
msgstr "<objet tampon (effacé) à %p>" msgstr "<objet tampon (effacé) à %p>"
msgid "E837: This Vim cannot execute :py3 after using :python"
msgstr ""
"E837: Vim ne peut pas exécuter :py3 après avoir utilisé :python"
msgid "E265: $_ must be an instance of String" msgid "E265: $_ must be an instance of String"
msgstr "E265: $_ doit être une instance de chaîne (String)" msgstr "E265: $_ doit être une instance de chaîne (String)"
@ -3408,12 +3406,6 @@ msgstr "-display <
msgid "-iconic\t\tStart vim iconified" msgid "-iconic\t\tStart vim iconified"
msgstr "-iconic\t\tIconifier Vim au démarrage" msgstr "-iconic\t\tIconifier Vim au démarrage"
msgid "-name <name>\t\tUse resource as if vim was <name>"
msgstr "-name <nom>\t\tEmployer les ressources comme si Vim s'appelait <nom>"
msgid "\t\t\t (Unimplemented)\n"
msgstr "\t\t\t (non implémenté)\n"
msgid "-background <color>\tUse <color> for the background (also: -bg)" msgid "-background <color>\tUse <color> for the background (also: -bg)"
msgstr "" msgstr ""
"-background <coul>\tUtiliser <couleur> pour l'arrière-plan\t (abrv : -bg)" "-background <coul>\tUtiliser <couleur> pour l'arrière-plan\t (abrv : -bg)"
@ -3542,7 +3534,6 @@ msgstr ""
"\n" "\n"
"modif ligne col fichier/texte" "modif ligne col fichier/texte"
#, c-format
msgid "" msgid ""
"\n" "\n"
"# File marks:\n" "# File marks:\n"
@ -3551,7 +3542,6 @@ msgstr ""
"# Marques dans le fichier :\n" "# Marques dans le fichier :\n"
#. Write the jumplist with -' #. Write the jumplist with -'
#, c-format
msgid "" msgid ""
"\n" "\n"
"# Jumplist (newest first):\n" "# Jumplist (newest first):\n"
@ -3559,7 +3549,6 @@ msgstr ""
"\n" "\n"
"# Liste de sauts (le plus récent en premier) :\n" "# Liste de sauts (le plus récent en premier) :\n"
#, c-format
msgid "" msgid ""
"\n" "\n"
"# History of marks within files (newest to oldest):\n" "# History of marks within files (newest to oldest):\n"
@ -4236,7 +4225,6 @@ msgstr "Vim : pr
msgid "Vim: Finished.\n" msgid "Vim: Finished.\n"
msgstr "Vim : Fini.\n" msgstr "Vim : Fini.\n"
#, c-format
msgid "ERROR: " msgid "ERROR: "
msgstr "ERREUR : " msgstr "ERREUR : "
@ -4339,6 +4327,9 @@ msgstr "read sur la socket Netbeans"
msgid "E658: NetBeans connection lost for buffer %ld" msgid "E658: NetBeans connection lost for buffer %ld"
msgstr "E658: Connexion NetBeans perdue pour le tampon %ld" msgstr "E658: Connexion NetBeans perdue pour le tampon %ld"
msgid "E838: netbeans is not supported with this GUI"
msgstr "E838: netbeans n'est pas supporté avec cette interface graphique"
msgid "E511: netbeans already connected" msgid "E511: netbeans already connected"
msgstr "E511: netbeans déjà connecté" msgstr "E511: netbeans déjà connecté"
@ -5624,9 +5615,6 @@ msgstr " coupures de ligne"
msgid "E395: contains argument not accepted here" msgid "E395: contains argument not accepted here"
msgstr "E395: L'argument « contains » n'est pas accepté ici" msgstr "E395: L'argument « contains » n'est pas accepté ici"
msgid "E396: containedin argument not accepted here"
msgstr "E396: L'argument « containedin » n'est pas accepté ici"
msgid "E393: group[t]here not accepted here" msgid "E393: group[t]here not accepted here"
msgstr "E393: L'argument « group[t]here » n'est pas accepté ici" msgstr "E393: L'argument « group[t]here » n'est pas accepté ici"