Skip to content
Snippets Groups Projects
Commit 84f7235b authored by Bram Moolenaar's avatar Bram Moolenaar
Browse files

Updated runtime files. Add Dutch translations.

parent 7c578d3c
No related merge requests found
Showing
with 82 additions and 50 deletions
...@@ -700,7 +700,9 @@ QuickFixCmdPre Before a quickfix command is run (|:make|, ...@@ -700,7 +700,9 @@ QuickFixCmdPre Before a quickfix command is run (|:make|,
|:lmake|, |:grep|, |:lgrep|, |:grepadd|, |:lmake|, |:grep|, |:lgrep|, |:grepadd|,
|:lgrepadd|, |:vimgrep|, |:lvimgrep|, |:lgrepadd|, |:vimgrep|, |:lvimgrep|,
|:vimgrepadd|, |:lvimgrepadd|, |:cscope|, |:vimgrepadd|, |:lvimgrepadd|, |:cscope|,
|:helpgrep|, |:lhelpgrep|). |:cfile|, |:cgetfile|, |:caddfile|, |:lfile|,
|:lgetfile|, |:laddfile|, |:helpgrep|,
|:lhelpgrep|).
The pattern is matched against the command The pattern is matched against the command
being run. When |:grep| is used but 'grepprg' being run. When |:grep| is used but 'grepprg'
is set to "internal" it still matches "grep". is set to "internal" it still matches "grep".
......
*eval.txt* For Vim version 7.3. Last change: 2012 Jan 28 *eval.txt* For Vim version 7.3. Last change: 2012 Mar 07
VIM REFERENCE MANUAL by Bram Moolenaar VIM REFERENCE MANUAL by Bram Moolenaar
...@@ -2744,13 +2744,15 @@ exp({expr}) *exp()* ...@@ -2744,13 +2744,15 @@ exp({expr}) *exp()*
{only available when compiled with the |+float| feature} {only available when compiled with the |+float| feature}
expand({expr} [, {flag}]) *expand()* expand({expr} [, {nosuf} [, {list}]]) *expand()*
Expand wildcards and the following special keywords in {expr}. Expand wildcards and the following special keywords in {expr}.
The result is a String. 'wildignorecase' applies. 'wildignorecase' applies.
When there are several matches, they are separated by <NL> If {list} is given and it is non-zero, a List will be returned.
characters. [Note: in version 5.0 a space was used, which Otherwise the result is a String and when there are several
caused problems when a file name contains a space] matches, they are separated by <NL> characters. [Note: in
version 5.0 a space was used, which caused problems when a
file name contains a space]
If the expansion fails, the result is an empty string. A name If the expansion fails, the result is an empty string. A name
for a non-existing file is not included. for a non-existing file is not included.
...@@ -3454,18 +3456,23 @@ getwinvar({winnr}, {varname}) *getwinvar()* ...@@ -3454,18 +3456,23 @@ getwinvar({winnr}, {varname}) *getwinvar()*
:let list_is_on = getwinvar(2, '&list') :let list_is_on = getwinvar(2, '&list')
:echo "myvar = " . getwinvar(1, 'myvar') :echo "myvar = " . getwinvar(1, 'myvar')
< <
glob({expr} [, {flag}]) *glob()* glob({expr} [, {nosuf} [, {list}]]) *glob()*
Expand the file wildcards in {expr}. See |wildcards| for the Expand the file wildcards in {expr}. See |wildcards| for the
use of special characters. use of special characters.
The result is a String.
When there are several matches, they are separated by <NL> Unless the optional {nosuf} argument is given and is non-zero,
characters.
Unless the optional {flag} argument is given and is non-zero,
the 'suffixes' and 'wildignore' options apply: Names matching the 'suffixes' and 'wildignore' options apply: Names matching
one of the patterns in 'wildignore' will be skipped and one of the patterns in 'wildignore' will be skipped and
'suffixes' affect the ordering of matches. 'suffixes' affect the ordering of matches.
'wildignorecase' always applies. 'wildignorecase' always applies.
If the expansion fails, the result is an empty string.
When {list} is present and it is non-zero the result is a List
with all matching files. The advantage of using a List is,
you also get filenames containing newlines correctly.
Otherwise the result is a String and when there are several
matches, they are separated by <NL> characters.
If the expansion fails, the result is an empty String or List.
A name for a non-existing file is not included. A name for a non-existing file is not included.
For most systems backticks can be used to get files names from For most systems backticks can be used to get files names from
...@@ -6678,9 +6685,9 @@ Hint: If you distribute a bunch of scripts you can pack them together with the ...@@ -6678,9 +6685,9 @@ Hint: If you distribute a bunch of scripts you can pack them together with the
============================================================================== ==============================================================================
6. Curly braces names *curly-braces-names* 6. Curly braces names *curly-braces-names*
Wherever you can use a variable, you can use a "curly braces name" variable. In most places where you can use a variable, you can use a "curly braces name"
This is a regular variable name with one or more expressions wrapped in braces variable. This is a regular variable name with one or more expressions
{} like this: > wrapped in braces {} like this: >
my_{adjective}_variable my_{adjective}_variable
When Vim encounters this, it evaluates the expression inside the braces, puts When Vim encounters this, it evaluates the expression inside the braces, puts
...@@ -6716,6 +6723,11 @@ Example: > ...@@ -6716,6 +6723,11 @@ Example: >
This would call the function "my_func_whizz(parameter)". This would call the function "my_func_whizz(parameter)".
This does NOT work: >
:let i = 3
:let @{i} = '' " error
:echo @{i} " error
============================================================================== ==============================================================================
7. Commands *expression-commands* 7. Commands *expression-commands*
......
*mbyte.txt* For Vim version 7.3. Last change: 2011 Oct 15 *mbyte.txt* For Vim version 7.3. Last change: 2012 Feb 29
VIM REFERENCE MANUAL by Bram Moolenaar et al. VIM REFERENCE MANUAL by Bram Moolenaar et al.
...@@ -857,7 +857,7 @@ Use the RPM or port for your system. ...@@ -857,7 +857,7 @@ Use the RPM or port for your system.
USING XIM *multibyte-input* *E284* *E286* *E287* *E288* USING XIM *multibyte-input* *E284* *E286* *E287* *E288*
*E285* *E291* *E292* *E290* *E289* *E285* *E289*
Note that Display and Input are independent. It is possible to see your Note that Display and Input are independent. It is possible to see your
language even though you have no input method for it. But when your Display language even though you have no input method for it. But when your Display
......
*todo.txt* For Vim version 7.3. Last change: 2012 Feb 22 *todo.txt* For Vim version 7.3. Last change: 2012 Mar 07
VIM REFERENCE MANUAL by Bram Moolenaar VIM REFERENCE MANUAL by Bram Moolenaar
...@@ -44,9 +44,6 @@ Stack trace of crash: http://vpaste.net/GBt9S ...@@ -44,9 +44,6 @@ Stack trace of crash: http://vpaste.net/GBt9S
Once syntax and other runtime files have been fixed: add "set cp" to Once syntax and other runtime files have been fixed: add "set cp" to
check.vim. Use a function to run both with 'cp' and 'nocp'. check.vim. Use a function to run both with 'cp' and 'nocp'.
Undo broken when pasting close to the last line. (Andrey Radev, 2012 Feb 14)
Patch by Christian Brabandt, 2012 Feb 14.
GTK: problem with 'L' in 'guioptions' changing the window width. GTK: problem with 'L' in 'guioptions' changing the window width.
(Aaron Cornelius, 2012 Feb 6) (Aaron Cornelius, 2012 Feb 6)
...@@ -54,24 +51,14 @@ Win32: When a directory name contains an exclamation mark, completion doesn't ...@@ -54,24 +51,14 @@ Win32: When a directory name contains an exclamation mark, completion doesn't
complete the contents of the directory. No escaping for the "!"? (Jan complete the contents of the directory. No escaping for the "!"? (Jan
Stocker, 2012 Jan 5) Stocker, 2012 Jan 5)
Patch to speed up ga_grow(). (Dominique Pelle, 2012 Feb 13) Issue 54: document behavior of -complete, also expands arg.
Patch for "tab drop hoge" moving current window. (Higashi, 2012 Jan 31)
":tab drop buffer.c" always opens a new tab, also if buffer.c is already in an
open window. (Herb Sitz, 2011 Nov 17)
":tab drop filename" doesn't work nicely when "filename" is open in a window
in another tab. (Tony Mechelynck, 2009 Feb 13)
Patch to make InsertCharPre work better. (Yasuhiro Matsumoto, 2011 Oct 21)
Patch to fix closed folds with "loadview". (Xavier de Gaye, 2011 Nov 25) Syntax update problem in one buffer opened in two windows, bottom window is
not correctly updated. (Paul Harris, 2012 Feb 27)
Patch to add getsid(). (Tyru, 2011 Oct 2) Do we want this? Update Oct 4. Patch to add getsid(). (Tyru, 2011 Oct 2) Do we want this? Update Oct 4.
Or use expand('<sid>')? Or use expand('<sid>')?
Patch for glob() returning a list. (Christian Brabandt, 2011 Aug 24, second
one)
Win32: When the taskbar is at the top of the screen creating the tabbar causes Win32: When the taskbar is at the top of the screen creating the tabbar causes
the window to move unnecessarily. (William E. Skeith III, 2012 Jan 12) the window to move unnecessarily. (William E. Skeith III, 2012 Jan 12)
Patch: 2012 Jan 13 Needs more work (2012 Feb 2) Patch: 2012 Jan 13 Needs more work (2012 Feb 2)
...@@ -84,12 +71,6 @@ URXVT: ...@@ -84,12 +71,6 @@ URXVT:
- Use urxvt mouse support also in xterm. Explanations: - Use urxvt mouse support also in xterm. Explanations:
http://www.midnight-commander.org/ticket/2662 http://www.midnight-commander.org/ticket/2662
Patch for using QuickFixCmdPre for more commands. (Marcin Szamotulski, 2012
Feb 1, update Feb 2)
Patch for pasting in the Ex command line is slow. (Dominique Pelle, 2012 Feb
19)
When running Vim in silent ex mode, an existing swapfile causes Vim to wait When running Vim in silent ex mode, an existing swapfile causes Vim to wait
for a user action without a prompt. (Maarten Billemont, 2012 Feb 3) for a user action without a prompt. (Maarten Billemont, 2012 Feb 3)
Do give the prompt? Quit with an error? Do give the prompt? Quit with an error?
...@@ -107,6 +88,9 @@ Recognize objcpp. (Austin Ziegler, 2012 Feb 15) ...@@ -107,6 +88,9 @@ Recognize objcpp. (Austin Ziegler, 2012 Feb 15)
side effect. side effect.
Patch by Kana Natsuno, 2011 Nov 12. Patch by Kana Natsuno, 2011 Nov 12.
Using Ctrl-] in a mapping does not expand abbreviations. Patch by Christian
Brabandt, 2012 Mar 2.
Patch to fix member confusion in Lua interface. (Taro Muraoka, 2012 Jan 8) Patch to fix member confusion in Lua interface. (Taro Muraoka, 2012 Jan 8)
Update Jan 9. Update Jan 9.
Carvalho merged the patch: New version 2012 Jan 19. Carvalho merged the patch: New version 2012 Jan 19.
...@@ -137,6 +121,8 @@ Name it "CompleteFuncDone". ...@@ -137,6 +121,8 @@ Name it "CompleteFuncDone".
Patch for Make_mvc.mak and Make_ming.mak for Ruby support. (Yasuhiro Patch for Make_mvc.mak and Make_ming.mak for Ruby support. (Yasuhiro
Matsumoto, 2012 Jan 30) Matsumoto, 2012 Jan 30)
Patch to add completion for :history command. (Dominique Pelle, 2012 Feb 26)
Use a count before "v" and "V" to select that many characters or lines? Use a count before "v" and "V" to select that many characters or lines?
(Kikyous) (Kikyous)
...@@ -197,6 +183,9 @@ Syntax region with 'concealends' and a 'cchar' value, 'conceallevel' set to 2, ...@@ -197,6 +183,9 @@ Syntax region with 'concealends' and a 'cchar' value, 'conceallevel' set to 2,
only one of the two ends gets the cchar displayed. (Brett Stahlman, 2010 Aug only one of the two ends gets the cchar displayed. (Brett Stahlman, 2010 Aug
21, Ben Fritz, 2010 Sep 14) 21, Ben Fritz, 2010 Sep 14)
Win32: Does building a 64 bit version with VC9 give warnings for int
conversions? (Mike Williams)
Win32: Patch to use task dialogs when available. (Sergiu Dotenco, 2011 Sep 17) Win32: Patch to use task dialogs when available. (Sergiu Dotenco, 2011 Sep 17)
New feature, requires testing. Made some remarks. New feature, requires testing. Made some remarks.
...@@ -251,6 +240,10 @@ Bug: Windows 7 64 bit system freezes when 'clipboard' set to "unnamed" and ...@@ -251,6 +240,10 @@ Bug: Windows 7 64 bit system freezes when 'clipboard' set to "unnamed" and
doing ":g/test/d". Putting every delete on the clipboard? (Robert Chan, 2011 doing ":g/test/d". Putting every delete on the clipboard? (Robert Chan, 2011
Jun 17) Jun 17)
When there is a ">" in a line that "gq" wraps to the start of the next line,
then the following line will pick it up as a leader. Should get the leader
from the first line, not a wrapped line. (Matt Ackeret, 2012 Feb 27)
Using ":break" or something else that stops executing commands inside a 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)
......
*undo.txt* For Vim version 7.3. Last change: 2012 Jan 28 *undo.txt* For Vim version 7.3. Last change: 2012 Mar 04
VIM REFERENCE MANUAL by Bram Moolenaar VIM REFERENCE MANUAL by Bram Moolenaar
...@@ -250,7 +250,7 @@ detect if an undo file is no longer synchronized with the file it was written ...@@ -250,7 +250,7 @@ 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. An undo file is also 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' ignored if its owner differs from the owner of the edited file. Set 'verbose'
to get a message about that. to get a message about that when opening a file.
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.
......
" Vim support file to detect file types " Vim support file to detect file types
" "
" Maintainer: Bram Moolenaar <Bram@vim.org> " Maintainer: Bram Moolenaar <Bram@vim.org>
" Last Change: 2012 Feb 05 " Last Change: 2012 Feb 24
" Listen very carefully, I will say this only once " Listen very carefully, I will say this only once
if exists("did_load_filetypes") if exists("did_load_filetypes")
...@@ -2317,6 +2317,9 @@ au BufNewFile,BufRead fglrxrc setf xml ...@@ -2317,6 +2317,9 @@ au BufNewFile,BufRead fglrxrc setf xml
au BufNewFile,BufRead *.xlf setf xml au BufNewFile,BufRead *.xlf setf xml
au BufNewFile,BufRead *.xliff setf xml au BufNewFile,BufRead *.xliff setf xml
" XML User Interface Language
au BufNewFile,BufRead *.xul setf xml
" X11 xmodmap (also see below) " X11 xmodmap (also see below)
au BufNewFile,BufRead *Xmodmap setf xmodmap au BufNewFile,BufRead *Xmodmap setf xmodmap
......
" Vim filetype plugin file " Vim filetype plugin file
" Language: Abaqus finite element input file (www.abaqus.com) " Language: Abaqus finite element input file (www.abaqus.com)
" Maintainer: Carl Osterwisch <osterwischc@asme.org> " Maintainer: Carl Osterwisch <osterwischc@asme.org>
" Last Change: 2008 Oct 5 " Last Change: 2012 Mar 11
" Only do this when not done yet for this buffer " Only do this when not done yet for this buffer
if exists("b:did_ftplugin") | finish | endif if exists("b:did_ftplugin") | finish | endif
...@@ -87,3 +87,4 @@ let b:undo_ftplugin .= "|unmap <buffer> [[|unmap <buffer> ]]" ...@@ -87,3 +87,4 @@ let b:undo_ftplugin .= "|unmap <buffer> [[|unmap <buffer> ]]"
" Restore saved compatibility options " Restore saved compatibility options
let &cpoptions = s:cpo_save let &cpoptions = s:cpo_save
unlet s:cpo_save
...@@ -41,3 +41,4 @@ let b:undo_ftplugin = "unlet! b:browsefilter | " . s:undo_ftplugin ...@@ -41,3 +41,4 @@ let b:undo_ftplugin = "unlet! b:browsefilter | " . s:undo_ftplugin
" Restore the saved compatibility options. " Restore the saved compatibility options.
let &cpo = s:save_cpo let &cpo = s:save_cpo
unlet s:save_cpo
...@@ -57,3 +57,4 @@ let b:undo_ftplugin = "unlet! b:match_words b:match_ignorecase b:browsefilter | ...@@ -57,3 +57,4 @@ let b:undo_ftplugin = "unlet! b:match_words b:match_ignorecase b:browsefilter |
" Restore the saved compatibility options. " Restore the saved compatibility options.
let &cpo = s:save_cpo let &cpo = s:save_cpo
unlet s:save_cpo
...@@ -39,3 +39,4 @@ let b:undo_ftplugin = "unlet! b:browsefilter | " . b:undo_ftplugin ...@@ -39,3 +39,4 @@ let b:undo_ftplugin = "unlet! b:browsefilter | " . b:undo_ftplugin
" Restore the saved compatibility options. " Restore the saved compatibility options.
let &cpo = s:save_cpo let &cpo = s:save_cpo
unlet s:save_cpo
...@@ -24,3 +24,4 @@ let b:undo_ftplugin = "unlet! b:match_words" ...@@ -24,3 +24,4 @@ let b:undo_ftplugin = "unlet! b:match_words"
" Restore the saved compatibility options. " Restore the saved compatibility options.
let &cpo = s:save_cpo let &cpo = s:save_cpo
unlet s:save_cpo
...@@ -45,3 +45,4 @@ let b:undo_ftplugin = "setlocal commentstring< formatoptions<" . ...@@ -45,3 +45,4 @@ let b:undo_ftplugin = "setlocal commentstring< formatoptions<" .
" Restore the saved compatibility options. " Restore the saved compatibility options.
let &cpo = s:save_cpo let &cpo = s:save_cpo
unlet s:save_cpo
...@@ -37,3 +37,4 @@ let b:undo_ftplugin = "setlocal commentstring< comments< formatoptions<" . ...@@ -37,3 +37,4 @@ let b:undo_ftplugin = "setlocal commentstring< comments< formatoptions<" .
" Restore the saved compatibility options. " Restore the saved compatibility options.
let &cpo = s:save_cpo let &cpo = s:save_cpo
unlet s:save_cpo
...@@ -19,6 +19,9 @@ else ...@@ -19,6 +19,9 @@ else
let s:did_function_definitions = 1 let s:did_function_definitions = 1
endif endif
let s:cpo_save = &cpo
set cpo&vim
if !exists('g:erlang_keywordprg') if !exists('g:erlang_keywordprg')
let g:erlang_keywordprg = 'erl -man' let g:erlang_keywordprg = 'erl -man'
endif endif
...@@ -76,3 +79,9 @@ function ErlangFoldText() ...@@ -76,3 +79,9 @@ function ErlangFoldText()
endfunction endfunction
call s:SetErlangOptions() call s:SetErlangOptions()
let b:undo_ftplugin = "setlocal foldmethod< foldexpr< foldtext<"
\ . " comments< commentstring< formatoptions<"
let &cpo = s:cpo_save
unlet s:cpo_save
" Vim filetype plugin " Vim filetype plugin
" Language: eRuby " Language: eRuby
" Maintainer: Tim Pope <vimNOSPAM@tpope.org> " Maintainer: Tim Pope <vimNOSPAM@tpope.org>
" Last Change: 2010 Apr 15 " Last Change: 2012 Mar 11
" URL: http://vim-ruby.rubyforge.org " URL: http://vim-ruby.rubyforge.org
" Anon CVS: See above site " Anon CVS: See above site
" Release Coordinator: Doug Kearns <dougkearns@gmail.com> " Release Coordinator: Doug Kearns <dougkearns@gmail.com>
...@@ -100,5 +100,6 @@ let b:undo_ftplugin = "setl cms< " ...@@ -100,5 +100,6 @@ let b:undo_ftplugin = "setl cms< "
\ " | unlet! b:browsefilter b:match_words | " . s:undo_ftplugin \ " | unlet! b:browsefilter b:match_words | " . s:undo_ftplugin
let &cpo = s:save_cpo let &cpo = s:save_cpo
unlet s:save_cpo
" vim: nowrap sw=2 sts=2 ts=8: " vim: nowrap sw=2 sts=2 ts=8:
" Vim filetype plugin " Vim filetype plugin
" Language: Haml " Language: Haml
" Maintainer: Tim Pope <vimNOSPAM@tpope.org> " Maintainer: Tim Pope <vimNOSPAM@tpope.org>
" Last Change: 2010 May 21 " Last Change: 2012 Mar 11
" Only do this when not done yet for this buffer " Only do this when not done yet for this buffer
if exists("b:did_ftplugin") if exists("b:did_ftplugin")
...@@ -63,5 +63,6 @@ let b:undo_ftplugin = "setl cms< com< " ...@@ -63,5 +63,6 @@ let b:undo_ftplugin = "setl cms< com< "
\ " | unlet! b:browsefilter b:match_words | " . s:undo_ftplugin \ " | unlet! b:browsefilter b:match_words | " . s:undo_ftplugin
let &cpo = s:save_cpo let &cpo = s:save_cpo
unlet s:save_cpo
" vim:set sw=2: " vim:set sw=2:
...@@ -12,7 +12,7 @@ endif ...@@ -12,7 +12,7 @@ endif
" Don't load another plugin for this buffer " Don't load another plugin for this buffer
let b:did_ftplugin = 1 let b:did_ftplugin = 1
let cpo_save = &cpo let s:cpo_save = &cpo
set cpo-=C set cpo-=C
let b:undo_ftplugin = "setl fo< com< tw< commentstring<" let b:undo_ftplugin = "setl fo< com< tw< commentstring<"
...@@ -57,5 +57,6 @@ if exists("loaded_matchit") ...@@ -57,5 +57,6 @@ if exists("loaded_matchit")
endif endif
setlocal ignorecase setlocal ignorecase
let &cpo = cpo_save let &cpo = s:cpo_save
unlet s:cpo_save
setlocal cpo+=M " makes \%( match \) setlocal cpo+=M " makes \%( match \)
...@@ -88,3 +88,4 @@ let b:undo_ftplugin = "setlocal commentstring< matchpairs< omnifunc< comments< f ...@@ -88,3 +88,4 @@ let b:undo_ftplugin = "setlocal commentstring< matchpairs< omnifunc< comments< f
" Restore the saved compatibility options. " Restore the saved compatibility options.
let &cpo = s:save_cpo let &cpo = s:save_cpo
unlet s:save_cpo
...@@ -34,5 +34,6 @@ let &l:include = '\\input' ...@@ -34,5 +34,6 @@ let &l:include = '\\input'
setlocal suffixesadd=.tex setlocal suffixesadd=.tex
let &cpo = s:save_cpo let &cpo = s:save_cpo
unlet s:save_cpo
" vim:sts=2:sw=2: " vim:sts=2:sw=2:
" Vim filetype plugin file " Vim filetype plugin file
" Language: Java " Language: Java
" Maintainer: Dan Sharp <dwsharp at users dot sourceforge dot net> " Maintainer: Dan Sharp <dwsharp at users dot sourceforge dot net>
" Last Change: 20 Jan 2009 " Last Change: 2012 Mar 11
" URL: http://dwsharp.users.sourceforge.net/vim/ftplugin " URL: http://dwsharp.users.sourceforge.net/vim/ftplugin
if exists("b:did_ftplugin") | finish | endif if exists("b:did_ftplugin") | finish | endif
...@@ -48,3 +48,4 @@ let b:undo_ftplugin = "setlocal suffixes< suffixesadd<" . ...@@ -48,3 +48,4 @@ let b:undo_ftplugin = "setlocal suffixes< suffixesadd<" .
" Restore the saved compatibility options. " Restore the saved compatibility options.
let &cpo = s:save_cpo let &cpo = s:save_cpo
unlet s:save_cpo
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment