Update runtime files

This commit is contained in:
Bram Moolenaar
2018-11-04 14:45:49 +01:00
parent dcd71cbaed
commit ba3ff53930
28 changed files with 432 additions and 218 deletions

View File

@ -126,7 +126,7 @@ endfunc
" This function checks if one of the first ten lines start with a '@'. In " This function checks if one of the first ten lines start with a '@'. In
" that case it is probably a change file. " that case it is probably a change file.
" If the first line starts with # or ! it's probably a ch file. " If the first line starts with # or ! it's probably a ch file.
" If a line has "main", "include", "//" ir "/*" it's probably ch. " If a line has "main", "include", "//" or "/*" it's probably ch.
" Otherwise CHILL is assumed. " Otherwise CHILL is assumed.
func dist#ft#FTchange() func dist#ft#FTchange()
let lnum = 1 let lnum = 1

View File

@ -850,7 +850,7 @@ the |substitute()| function with the following exceptions:
- magic is always set without regard to 'magic'. - magic is always set without regard to 'magic'.
- A ~ inserts a tilde literally. - A ~ inserts a tilde literally.
- <CR> and \r inserts a carriage-return (CTRL-M). - <CR> and \r inserts a carriage-return (CTRL-M).
- \<CR> does not have a special meaning. it's just one of \x. - \<CR> does not have a special meaning. It's just one of \x.
Examples: > Examples: >
:s/a\|b/xxx\0xxx/g modifies "a b" to "xxxaxxx xxxbxxx" :s/a\|b/xxx\0xxx/g modifies "a b" to "xxxaxxx xxxbxxx"

View File

@ -541,7 +541,6 @@ that see the '"' as part of their argument:
:autocmd :autocmd
:bufdo :bufdo
:cexpr (and the like) :cexpr (and the like)
:call
:cdo (and the like) :cdo (and the like)
:command :command
:cscope (and the like) :cscope (and the like)

View File

@ -180,10 +180,10 @@ function() or funcref(). When calling the function the Dictionary and/or
arguments will be passed to the function. Example: > arguments will be passed to the function. Example: >
let Cb = function('Callback', ['foo'], myDict) let Cb = function('Callback', ['foo'], myDict)
call Cb() call Cb('bar')
This will invoke the function as if using: > This will invoke the function as if using: >
call myDict.Callback('foo') call myDict.Callback('foo', 'bar')
This is very useful when passing a function around, e.g. in the arguments of This is very useful when passing a function around, e.g. in the arguments of
|ch_open()|. |ch_open()|.
@ -4614,7 +4614,6 @@ getcurpos() Get the position of the cursor. This is like getpos('.'), but
getcwd([{winnr} [, {tabnr}]]) getcwd([{winnr} [, {tabnr}]])
The result is a String, which is the name of the current The result is a String, which is the name of the current
working directory. working directory.
Without arguments, for the current window.
With {winnr} return the local current directory of this window With {winnr} return the local current directory of this window
in the current tab page. {winnr} can be the window number or in the current tab page. {winnr} can be the window number or
@ -9128,7 +9127,7 @@ win_getid([{win} [, {tab}]]) *win_getid()*
Get the |window-ID| for the specified window. Get the |window-ID| for the specified window.
When {win} is missing use the current window. When {win} is missing use the current window.
With {win} this is the window number. The top window has With {win} this is the window number. The top window has
number 1. Use `win_getid(winnr())` for the current window. number 1.
Without {tab} use the current tab, otherwise the tab with Without {tab} use the current tab, otherwise the tab with
number {tab}. The first tab has number one. number {tab}. The first tab has number one.
Return zero if the window cannot be found. Return zero if the window cannot be found.

View File

@ -588,8 +588,9 @@ The basics for using flexible indenting are explained in section |30.3| of the
user manual. user manual.
If you want to write your own indent file, it must set the 'indentexpr' If you want to write your own indent file, it must set the 'indentexpr'
option. Setting the 'indentkeys' option is often useful. See the option. Setting the 'indentkeys' option is often useful.
$VIMRUNTIME/indent directory for examples. See the $VIMRUNTIME/indent/README.txt file for hints.
See the $VIMRUNTIME/indent directory for examples.
REMARKS ABOUT SPECIFIC INDENT FILES ~ REMARKS ABOUT SPECIFIC INDENT FILES ~

View File

@ -1638,10 +1638,10 @@ A jump table for the options with a short description can be found at |Q_op|.
area extended, Vim tries to become the owner of the area extended, Vim tries to become the owner of the
windowing system's global selection or put the windowing system's global selection or put the
selected text on the clipboard used by the selection selected text on the clipboard used by the selection
register "*. See |guioptions_a| and |quotestar| for register "*. See |'go-a'| and |quotestar| for details.
details. When the GUI is active, the 'a' flag in When the GUI is active, the 'a' flag in 'guioptions'
'guioptions' is used, when the GUI is not active, this is used, when the GUI is not active, this "autoselect"
"autoselect" flag is used. flag is used.
Also applies to the modeless selection. Also applies to the modeless selection.
*clipboard-autoselectplus* *clipboard-autoselectplus*
@ -3916,7 +3916,7 @@ A jump table for the options with a short description can be found at |Q_op|.
terminal to list the command output. terminal to list the command output.
The terminal window will be positioned at the bottom, and grow The terminal window will be positioned at the bottom, and grow
upwards as needed. upwards as needed.
*guioptions_a* *'go-a'* *'go-a'*
'a' Autoselect: If present, then whenever VISUAL mode is started, 'a' Autoselect: If present, then whenever VISUAL mode is started,
or the Visual area extended, Vim tries to become the owner of or the Visual area extended, Vim tries to become the owner of
the windowing system's global selection. This means that the the windowing system's global selection. This means that the
@ -8125,8 +8125,8 @@ A jump table for the options with a short description can be found at |Q_op|.
non-keyword characters (white space is preferred). Maximum line non-keyword characters (white space is preferred). Maximum line
length is 510 bytes. length is 510 bytes.
To obtain a file to be used here, check out this ftp site: To obtain a file to be used here, check out this ftp site:
[Sorry this link doesn't work anymore, do you know the right one?] ftp://ftp.cerias.purdue.edu/pub/dict/wordlists/ First get the README
ftp://ftp.ox.ac.uk/pub/wordlists/ First get the README file. file.
To include a comma in a file name precede it with a backslash. Spaces To include a comma in a file name precede it with a backslash. Spaces
after a comma are ignored, otherwise spaces are included in the file after a comma are ignored, otherwise spaces are included in the file
name. See |option-backslash| about using backslashes. name. See |option-backslash| about using backslashes.

View File

@ -898,7 +898,7 @@ commands can be combined to create a NewGrep command: >
'smartcase' is not used. 'smartcase' is not used.
If {pattern} is empty (e.g. // is specified), the last If {pattern} is empty (e.g. // is specified), the last
used search pattern is used. |last-pattern| used search pattern is used. |last-pattern|
:{count}vim[grep] ...
When a number is put before the command this is used When a number is put before the command this is used
as the maximum number of matches to find. Use as the maximum number of matches to find. Use
":1vimgrep pattern file" to find only the first. ":1vimgrep pattern file" to find only the first.

View File

@ -939,6 +939,9 @@ to the respective variable. Example: >
To disable them use ":unlet". Example: > To disable them use ":unlet". Example: >
:unlet c_comment_strings :unlet c_comment_strings
An alternative is to switch to the C++ highlighting: >
:set filetype=cpp
Variable Highlight ~ Variable Highlight ~
*c_gnu* GNU gcc specific items *c_gnu* GNU gcc specific items
*c_comment_strings* strings and numbers inside a comment *c_comment_strings* strings and numbers inside a comment

View File

@ -6811,7 +6811,6 @@ gui_w32.txt gui_w32.txt /*gui_w32.txt*
gui_x11.txt gui_x11.txt /*gui_x11.txt* gui_x11.txt gui_x11.txt /*gui_x11.txt*
guifontwide_gtk options.txt /*guifontwide_gtk* guifontwide_gtk options.txt /*guifontwide_gtk*
guifontwide_win_mbyte options.txt /*guifontwide_win_mbyte* guifontwide_win_mbyte options.txt /*guifontwide_win_mbyte*
guioptions_a options.txt /*guioptions_a*
guu change.txt /*guu* guu change.txt /*guu*
gv visual.txt /*gv* gv visual.txt /*gv*
gview starting.txt /*gview* gview starting.txt /*gview*

View File

@ -38,9 +38,6 @@ browser use: https://github.com/vim/vim/issues/1234
*known-bugs* *known-bugs*
-------------------- Known bugs and current work ----------------------- -------------------- Known bugs and current work -----------------------
Using freed memory in quickfix. (Dominique Pelle, Yegappan is looking into a
fix).
'incsearch' with :s: (#3321) 'incsearch' with :s: (#3321)
- :s/foo using CTRL-G moves to another line, should not happen, or use the - :s/foo using CTRL-G moves to another line, should not happen, or use the
correct line (it uses the last but one line) (Lifepillar, Aug 18, #3345) correct line (it uses the last but one line) (Lifepillar, Aug 18, #3345)
@ -56,10 +53,13 @@ Prompt buffer:
Terminal debugger: Terminal debugger:
- Make prompt-buffer variant work better. - Make prompt-buffer variant work better.
- Add option to not open the program window. It's not used when attaching to
an already running program. (M. Kelly)
- When only gdb window exists, on "quit" edit another buffer. - When only gdb window exists, on "quit" edit another buffer.
- Termdebug does not work when Vim was build with mzscheme: gdb hangs just - Termdebug does not work when Vim was build with mzscheme: gdb hangs just
after "run". Everything else works, including communication channel. Not after "run". Everything else works, including communication channel. Not
initializing mzscheme avoid the problem, thus it's not some #ifdef. initializing mzscheme avoid the problem, thus it's not some #ifdef.
- Add support for lldb? #3565
Terminal emulator window: Terminal emulator window:
- GUI: When using ":set go+=!" a system() call causes the hit-enter prompt. - GUI: When using ":set go+=!" a system() call causes the hit-enter prompt.
@ -121,6 +121,11 @@ terminal.c and then CTRL-N twice.
Should do current file first and not split it up when more results are found. Should do current file first and not split it up when more results are found.
(Also #1890) (Also #1890)
Internal diff doesn't handle binary file like external diff does. (Mike
Williams, 2018 Oct 30)
Problem with :tlmenu: Detach item added with all modes? Issue #3563.
C syntax: {} inside () causes following {} to be highlighted as error. C syntax: {} inside () causes following {} to be highlighted as error.
(Michalis Giannakidis, 2006 Jun 1) (Michalis Giannakidis, 2006 Jun 1)
@ -140,7 +145,7 @@ Pasting foo} causes Vim to behave weird. (John Little, 2018 Jun 17)
Related to bracketed paste. I cannot reproduce it. Related to bracketed paste. I cannot reproduce it.
":mksession" cannot handle a very long 'runtimepath'. (Timothy Madden, 21 Sep ":mksession" cannot handle a very long 'runtimepath'. (Timothy Madden, 21 Sep
2018, #3466) Christian is working on a patch. 2018, #3466) Patch from Christian, 2018 Oct 30 (with comments).
Patch in pull request #2967: Allow white space in sign text. (Ben Jackson) Patch in pull request #2967: Allow white space in sign text. (Ben Jackson)
Test fails in AppVeyor. Test fails in AppVeyor.
@ -155,9 +160,6 @@ ml_get error: (Israel Chauca Fuentes, 2018 Oct 17, #3550).
Patch to convert temp file name. (Yasuhiro Matsumoto, #3520) Patch to convert temp file name. (Yasuhiro Matsumoto, #3520)
Not ready to include yet. Not ready to include yet.
Removing flags from 'cpoptions' breaks the Winbar buttons in termdebug.
(Dominique Pelle, 2018 Jul 16)
Problem with two buffers with the same name a/b, if it didn't exist before and Problem with two buffers with the same name a/b, if it didn't exist before and
is created outside of Vim. (dskloetg, 2018 Jul 16, #3219) is created outside of Vim. (dskloetg, 2018 Jul 16, #3219)
@ -171,6 +173,12 @@ unified diff (list of lines).
Patch to implement 'diffref' option. (#3535) Patch to implement 'diffref' option. (#3535)
Easier to use a 'diffmaster' option, is the extra complexity needed? Easier to use a 'diffmaster' option, is the extra complexity needed?
Patch to fix that bracketed paste remains after Vim exits. (2018 Oct 30, #3579)
cursorline highlighting not removed after yanking in Visual mode.
(Matéo Zanibelli, 2018 Oct 30, #3578)
Patch by Christian, Oct 30.
Memory leaks in test_channel? (or is it because of fork()) Memory leaks in test_channel? (or is it because of fork())
Using uninitialized value in test_crypt. Using uninitialized value in test_crypt.
Memory leak in test_terminal: Memory leak in test_terminal:
@ -189,6 +197,9 @@ gethostbyname() is old, use getaddrinfo() if available. (#3227)
matchaddpos() gets slow with many matches. Proposal by Rick Howe, 2018 Jul matchaddpos() gets slow with many matches. Proposal by Rick Howe, 2018 Jul
19. 19.
Sourceforge Vim pages still have content, redirect from empty page.
Check for PHP errors. (Wayne Davison, 2018 Oct 26)
Patch to support ":tag <tagkind> <tagname>". (emmrk, 2018 May 7, #2871) Patch to support ":tag <tagkind> <tagname>". (emmrk, 2018 May 7, #2871)
Use something like ":tag {kind}/{tagname}". Use something like ":tag {kind}/{tagname}".
Not ready to include. Not ready to include.
@ -213,7 +224,7 @@ Only output t_Cs when t_Ce is also set. do not use Cs and Ce termcap entries.
Add t_cS and t_cR for cursor color select and reset. Use Cs and Cr terminfo Add t_cS and t_cR for cursor color select and reset. Use Cs and Cr terminfo
values. values.
Furthere xdiff changes: Further xdiff changes:
- More options, e.g. different kind of whitespace diff. - More options, e.g. different kind of whitespace diff.
- when editing text, update the surrounding diff blocks. - when editing text, update the surrounding diff blocks.
- omit diff.exe from distribution - omit diff.exe from distribution
@ -222,19 +233,11 @@ Furthere xdiff changes:
Difference between two regexp engines: #3373 Difference between two regexp engines: #3373
Patch to handle missin glibwinpthread-1.dll. (Ken Takata, 2018 Sep 23, #2827)
Patch to add arguments to argc() and argv(). (Yegappan Lakshmanan, 2016 Jan
24, #832) Also need a way to get the global arg list? Update later on Jan 24
Update Mar 5. Update Apr 7. Update Jun 5.
When the last line wraps, selecting with the mouse below that line only When the last line wraps, selecting with the mouse below that line only
includes the first screen line. (2018 Aug 23, #3368) includes the first screen line. (2018 Aug 23, #3368)
Add `:filter` support for various commands (Marcin Szamotulski, 2017 Nov 12
#2322) Patch now in #2856.
Refactored HTML indent file. (Michael Lee, #1821) Refactored HTML indent file. (Michael Lee, #1821)
Ask to write a test first.
Patch to add getregpoint() and setreg() with an option to set "". Patch to add getregpoint() and setreg() with an option to set "".
(Andy Massimino, 2018 Aug 24, #3370) (Andy Massimino, 2018 Aug 24, #3370)
@ -261,6 +264,9 @@ characters. (#3246)
'foldtext' is evaluated too often. (Daniel Hahler, #2773) 'foldtext' is evaluated too often. (Daniel Hahler, #2773)
Add Native language protocol server (LSP) support. (Yegappan Lakshmanan, 2018
Oct 28)
ml_get error when using a Python script. (Yggdroot, 2017 Jun 1, #1737) ml_get error when using a Python script. (Yggdroot, 2017 Jun 1, #1737)
Lemonboy can reproduce (2017 Jun 5) Lemonboy can reproduce (2017 Jun 5)
Also reproduced by Benjamin Doherty, 2018 Oct 4. Also reproduced by Benjamin Doherty, 2018 Oct 4.
@ -276,6 +282,11 @@ Tests failing for "make testgui" with GTK:
- Test_setbufvar_options() - Test_setbufvar_options()
- Test_exit_callback_interval() - Test_exit_callback_interval()
Get a "No Name" buffer when 'hidden' is set and opening a new window from the
quickfix list. (bfrg, 2018 Jan 22, #2574)
Tracked down by Jason Franklin, 2018 Oct 30.
Suggested patch by Yegappan, Nov 1.
When using CTRL-W CR in the quickfix window, the jumplist in the opened window When using CTRL-W CR in the quickfix window, the jumplist in the opened window
is cleared, to avoid going back to the list of errors buffer (would have two is cleared, to avoid going back to the list of errors buffer (would have two
windows with it). Can we just remove the jump list entries for the quickfix windows with it). Can we just remove the jump list entries for the quickfix
@ -298,8 +309,8 @@ balloonexpr() on MS-Windows GUI doesn't handle accented chars? (nivaemail,
2018 Sep 14) 2018 Sep 14)
Add v:motion_force. (Kana Natsuno, 2008 Dec 6) Add v:motion_force. (Kana Natsuno, 2008 Dec 6)
Maybe call it v:motiontype. Update in #3490) Maybe call it v:motiontype. Update in #3490.
Alternaitve: add the force flag to mode(), after "no". Alternative: add the force flag to mode(), after "no".
Try out background make plugin: Try out background make plugin:
https://github.com/AndrewVos/vim-make-background https://github.com/AndrewVos/vim-make-background
@ -307,7 +318,7 @@ or asyncmake:
https://github.com/yegappan/asyncmake https://github.com/yegappan/asyncmake
Add a ModeChanged autocommand that has an argument indicating the old and new Add a ModeChanged autocommand that has an argument indicating the old and new
mode. Also used for switching Terminal mode. mode, as what's returned from mode(). Also used for switching Terminal mode.
Add an option with file patterns, to be used when unloading a buffer: If there Add an option with file patterns, to be used when unloading a buffer: If there
is a match, remove entries for the buffer from marks, jumplist, etc. To be is a match, remove entries for the buffer from marks, jumplist, etc. To be
@ -372,7 +383,7 @@ How to test that it works well for all Vim users?
Alternative manpager.vim. (Enno, 2018 Jan 5, #2529) Alternative manpager.vim. (Enno, 2018 Jan 5, #2529)
Delete all the speficic stuff for the Borland compiler? (#3374) Delete all the specific stuff for the Borland compiler? (#3374)
Patch in #3377 (Thomas Dziedzic) Patch in #3377 (Thomas Dziedzic)
With 'foldmethod' "indent" and appending an empty line, what follows isn't With 'foldmethod' "indent" and appending an empty line, what follows isn't
@ -451,6 +462,10 @@ option_save({list}) *option_save()*
values are handled and the script ID is restored, so that values are handled and the script ID is restored, so that
`:verbose set` will show where the option was originally set, `:verbose set` will show where the option was originally set,
not where it was restored. not where it was restored.
Alternatively: save and restore ALL options. Implementation needs to use
copy-on-write. Return an ID from option_save(), when
option_restore(ID) is called give an error if another option_save()
was called in the mean time, they must be balanced.
"gvim --remote" from a directory with non-word characters changes the current "gvim --remote" from a directory with non-word characters changes the current
directory (Paulo Marcel Coelho Arabic, 2017 Oct 30, #2266) directory (Paulo Marcel Coelho Arabic, 2017 Oct 30, #2266)
@ -474,9 +489,6 @@ Add script number to profile? (#3330 breaks tests).
A function defined locally and lambda's are not easily recognized. A function defined locally and lambda's are not easily recognized.
Mention where they were defined somewhere. Mention where they were defined somewhere.
Get a "No Name" buffer when 'hidden' is set and opening a new window from the
quickfix list. (bfrg, 2018 Jan 22, #2574)
CTRL-X on zero gets stuck on 0xfffffffffffffffe. (Hengyang Zhao, #2746) CTRL-X on zero gets stuck on 0xfffffffffffffffe. (Hengyang Zhao, #2746)
Invalid range error when using BufWinLeave for closing terminal. Invalid range error when using BufWinLeave for closing terminal.
@ -531,7 +543,7 @@ MS-Windows: buffer completion doesn't work when using backslash (or slash)
for a path separator. (xtal8, #2201) for a path separator. (xtal8, #2201)
Would be nice for insert mode completion to highlight the text that was added Would be nice for insert mode completion to highlight the text that was added
(and may change when picking another compltion). (and may change when picking another completion).
Test runtime files. Test runtime files.
Start with filetype detection: testdir/test_filetype.vim Start with filetype detection: testdir/test_filetype.vim
@ -3695,6 +3707,7 @@ Most interesting new features to be added when all bugs have been fixed:
Alternative: Make a function for Ex commands: cmd_edit(). Alternative: Make a function for Ex commands: cmd_edit().
- Add COLUMN NUMBERS to ":" commands ":line1,line2[col1,col2]cmd". Block - Add COLUMN NUMBERS to ":" commands ":line1,line2[col1,col2]cmd". Block
can be selected with CTRL-V. Allow '$' (end of line) for col2. can be selected with CTRL-V. Allow '$' (end of line) for col2.
(issue #3292)
- ECLIPSE plugin. Problem is: the interface is very complicated. Need to - ECLIPSE plugin. Problem is: the interface is very complicated. Need to
implement part in Java and then connect to Vim. Some hints from Alexandru implement part in Java and then connect to Vim. Some hints from Alexandru
Roman, 2004 Dec 15. Should then also work with Oracle Jdeveloper, see JSR Roman, 2004 Dec 15. Should then also work with Oracle Jdeveloper, see JSR

View File

@ -208,15 +208,17 @@ encryption key, just like the "-x" argument did: >
LIMITS ON ENCRYPTION LIMITS ON ENCRYPTION
The encryption algorithm used by Vim is weak. It is good enough to keep out The encryption algorithm used by Vim is not very strong. It is good enough to
the casual prowler, but not good enough to keep out a cryptology expert with keep out the casual prowler, but not good enough to keep out a cryptology
lots of time on his hands. Also you should be aware that the swap file is not expert with lots of time on his hands. The text in the swap file and the undo
encrypted; so while you are editing, people with superuser privileges can read file is also encrypted. However, this is done block-by-block and may reduce
the unencrypted text from this file. the time needed to crack a password. You can disable the swap file, but then
One way to avoid letting people read your swap file is to avoid using one. a crash will cause you to lose your work, since Vim keeps all the text in
If the -n argument is supplied on the command line, no swap file is used memory only. The undo file can be disabled with the only disadvantage that
(instead, Vim puts everything in memory). For example, to edit the encrypted you can't undo after unloading the buffer.
file "file.txt" without a swap file use the following command: > To avoid using a swap file, supply the -n argument on the command line.
For example, to edit the encrypted file "file.txt" without a swap file use the
following command: >
vim -x -n file.txt vim -x -n file.txt

View File

@ -81,6 +81,10 @@ will not change within a Vim session. The |win_getid()| and |win_id2tabwin()|
functions can be used to convert between the window/tab number and the functions can be used to convert between the window/tab number and the
identifier. There is also the window number, which may change whenever identifier. There is also the window number, which may change whenever
windows are opened or closed, see |winnr()|. windows are opened or closed, see |winnr()|.
The window number is only valid in one specific tab. The window ID is valid
across tabs. For most functions that take a window ID or a window number, the
window number only applies to the current tab, while the window ID can refer
to a window in any tab.
Each buffer has a unique number and the number will not change within a Vim Each buffer has a unique number and the number will not change within a Vim
session. The |bufnr()| and |bufname()| functions can be used to convert session. The |bufnr()| and |bufname()| functions can be used to convert

View File

@ -258,7 +258,7 @@ ligne.
.br .br
0000030: 2e5c 220a 2e5c 2220 3231 7374 .\"..\" 21st 0000030: 2e5c 220a 2e5c 2220 3231 7374 .\"..\" 21st
.br .br
000003c: 204d 6179 2031 3939 360a 2e5c May 1996..\ 000003c: 204d 6179 2031 3939 360a 2e5c May 1996..\\
.br .br
0000048: 2220 4d61 6e20 7061 6765 2061 " Man page a 0000048: 2220 4d61 6e20 7061 6765 2061 " Man page a
.br .br

View File

@ -258,7 +258,7 @@ ligne.
.br .br
0000030: 2e5c 220a 2e5c 2220 3231 7374 .\"..\" 21st 0000030: 2e5c 220a 2e5c 2220 3231 7374 .\"..\" 21st
.br .br
000003c: 204d 6179 2031 3939 360a 2e5c May 1996..\ 000003c: 204d 6179 2031 3939 360a 2e5c May 1996..\\
.br .br
0000048: 2220 4d61 6e20 7061 6765 2061 " Man page a 0000048: 2220 4d61 6e20 7061 6765 2061 " Man page a
.br .br

View File

@ -257,15 +257,15 @@ Stampa i primi 120 byte della pagina di manuale vim.1 a 12 byte per linea.
.br .br
0000018: 224d 616e 7561 6c20 7061 6765 "Manual page 0000018: 224d 616e 7561 6c20 7061 6765 "Manual page
.br .br
0000024: 2066 6f72 2078 7864 220a 2e5c for xxd"..\ 0000024: 2066 6f72 2078 7864 220a 2e5c for xxd"..\\
.br .br
0000030: 220a 2e5c 2220 3231 7374 204d "..\" 21st M 0000030: 220a 2e5c 2220 3231 7374 204d "..\\" 21st M
.br .br
000003c: 6179 2031 3939 360a 2e5c 2220 ay 1996..\" 000003c: 6179 2031 3939 360a 2e5c 2220 ay 1996..\\"
.br .br
0000048: 4d61 6e20 7061 6765 2061 7574 Man page aut 0000048: 4d61 6e20 7061 6765 2061 7574 Man page aut
.br .br
0000054: 686f 723a 0a2e 5c22 2020 2020 hor:..\" 0000054: 686f 723a 0a2e 5c22 2020 2020 hor:..\\"
.br .br
0000060: 546f 6e79 204e 7567 656e 7420 Tony Nugent 0000060: 546f 6e79 204e 7567 656e 7420 Tony Nugent
.br .br

View File

@ -257,15 +257,15 @@ Stampa i primi 120 byte della pagina di manuale vim.1 a 12 byte per linea.
.br .br
0000018: 224d 616e 7561 6c20 7061 6765 "Manual page 0000018: 224d 616e 7561 6c20 7061 6765 "Manual page
.br .br
0000024: 2066 6f72 2078 7864 220a 2e5c for xxd"..\ 0000024: 2066 6f72 2078 7864 220a 2e5c for xxd"..\\
.br .br
0000030: 220a 2e5c 2220 3231 7374 204d "..\" 21st M 0000030: 220a 2e5c 2220 3231 7374 204d "..\\" 21st M
.br .br
000003c: 6179 2031 3939 360a 2e5c 2220 ay 1996..\" 000003c: 6179 2031 3939 360a 2e5c 2220 ay 1996..\\"
.br .br
0000048: 4d61 6e20 7061 6765 2061 7574 Man page aut 0000048: 4d61 6e20 7061 6765 2061 7574 Man page aut
.br .br
0000054: 686f 723a 0a2e 5c22 2020 2020 hor:..\" 0000054: 686f 723a 0a2e 5c22 2020 2020 hor:..\\"
.br .br
0000060: 546f 6e79 204e 7567 656e 7420 Tony Nugent 0000060: 546f 6e79 204e 7567 656e 7420 Tony Nugent
.br .br

View File

@ -625,7 +625,7 @@ func! s:CSSIndent()
return eval(b:hi_css1indent) return eval(b:hi_css1indent)
endif endif
" If the current line starts with "}" align with it's match. " If the current line starts with "}" align with its match.
if curtext =~ '^\s*}' if curtext =~ '^\s*}'
call cursor(v:lnum, 1) call cursor(v:lnum, 1)
try try

12
runtime/indent/raml.vim Normal file
View File

@ -0,0 +1,12 @@
" Vim indent file
" Language: RAML (RESTful API Modeling Language)
" Maintainer: mucheng <leisurelicht@gmail.com>
" License: VIM LICENSE
" Latest Revision: 2018-11-03
if exists("b:did_indent")
finish
endif
" Same as yaml indenting.
runtime! indent/yaml.vim

View File

@ -22,8 +22,12 @@ First of all, create a FILETYPE.in file. It should contain:
endfunc endfunc
" END_INDENT " END_INDENT
- Optionally, a line with INDENT_EXE, followed by a Vim command. This will be If you just want to test normal indenting with default options, you can make
executed before indenting the lines. Example: this a large number of lines. Just add all kinds of language constructs,
nested statements, etc. with valid syntax.
- Optionally, add lines with INDENT_EXE after START_INDENT, followed by a Vim
command. This will be executed before indenting the lines. Example:
" START_INDENT " START_INDENT
" INDENT_EXE let g:vim_indent_cont = 6 " INDENT_EXE let g:vim_indent_cont = 6
@ -36,8 +40,8 @@ First of all, create a FILETYPE.in file. It should contain:
the next block of lines. the next block of lines.
- Alternatively to indenting all the lines between START_INDENT and - Alternatively to indenting all the lines between START_INDENT and
END_INDENT, use a INDENT_AT line, which specifies a pattern to find the line END_INDENT, use an INDENT_AT line, which specifies a pattern to find the
to indent. Example: line to indent. Example:
" START_INDENT " START_INDENT
" INDENT_AT this-line " INDENT_AT this-line
@ -47,7 +51,8 @@ First of all, create a FILETYPE.in file. It should contain:
" END_INDENT " END_INDENT
Alternatively you can use INDENT_NEXT to indent the line below the matching Alternatively you can use INDENT_NEXT to indent the line below the matching
pattern: pattern. Keep in mind that quite often it will indent relative to the
matching line:
" START_INDENT " START_INDENT
" INDENT_NEXT next-line " INDENT_NEXT next-line
@ -84,7 +89,7 @@ different from the FILETYPE.ok file.
Check the contents of the FILETYPE.fail file. If it is perfectly OK, then Check the contents of the FILETYPE.fail file. If it is perfectly OK, then
rename it to overwrite the FILETYPE.ok file. If you now run "make test" again, rename it to overwrite the FILETYPE.ok file. If you now run "make test" again,
the test will pass and create a FILETYPE.out file, which is identical to the the test will pass and create a FILETYPE.out file, which is identical to the
FILETYPE.ok file. FILETYPE.ok file. The FILETYPE.fail file will be deleted.
If you try to run "make test" again you will notice that nothing happens, If you try to run "make test" again you will notice that nothing happens,
because the FILETYPE.out file already exists. Delete it, or do "make clean", because the FILETYPE.out file already exists. Delete it, or do "make clean",

View File

@ -2,7 +2,9 @@
" Repository: https://github.com/chrisbra/vim-xml-ftplugin " Repository: https://github.com/chrisbra/vim-xml-ftplugin
" Maintainer: Christian Brabandt <cb@256bit.org> " Maintainer: Christian Brabandt <cb@256bit.org>
" Previous Maintainer: Johannes Zellner <johannes@zellner.org> " Previous Maintainer: Johannes Zellner <johannes@zellner.org>
" Last Change: 20180724 - Correctly indent xml comments https://github.com/vim/vim/issues/3200 " Last Change: 20181022 - Do not overwrite indentkeys setting
" https://github.com/chrisbra/vim-xml-ftplugin/issues/1
" 20180724 - Correctly indent xml comments https://github.com/vim/vim/issues/3200
" Notes: 1) does not indent pure non-xml code (e.g. embedded scripts) " Notes: 1) does not indent pure non-xml code (e.g. embedded scripts)
" 2) will be confused by unbalanced tags in comments " 2) will be confused by unbalanced tags in comments
" or CDATA sections. " or CDATA sections.
@ -19,7 +21,7 @@ set cpo&vim
" [-- local settings (must come before aborting the script) --] " [-- local settings (must come before aborting the script) --]
setlocal indentexpr=XmlIndentGet(v:lnum,1) setlocal indentexpr=XmlIndentGet(v:lnum,1)
setlocal indentkeys=o,O,*<Return>,<>>,<<>,/,{,} setlocal indentkeys=o,O,*<Return>,<>>,<<>,/,{,},!^F
if !exists('b:xml_indent_open') if !exists('b:xml_indent_open')
let b:xml_indent_open = '.\{-}<\a' let b:xml_indent_open = '.\{-}<\a'

View File

@ -138,7 +138,7 @@ map ,Id1 o# X .`a22lr 
map ,Il0 o#XX .`a22lr  map ,Il0 o#XX .`a22lr 
map ,Id0 o# .`a22lr  map ,Id0 o# .`a22lr 
" "
" Patterns used to replace a germ with it's next generation " Patterns used to replace a germ with its next generation
map ,Iaa o=AB =BC =CD =DE =EF =FG =GH =HI =IJ =JK =KL =LM =MN =NO =OP =PQ =QR map ,Iaa o=AB =BC =CD =DE =EF =FG =GH =HI =IJ =JK =KL =LM =MN =NO =OP =PQ =QR
map ,Iab o=RS =ST =TU =UV =VW =WX =XY =YZ =Z  map ,Iab o=RS =ST =TU =UV =VW =WX =XY =YZ =Z 
" "
@ -232,7 +232,7 @@ map ,m p
map ,m p map ,m p
" "
" Delete the character under the cursor " Delete the character under the cursor
map ,n x map ,n x
" "
" Replace a character by its next, A --> B, B --> C, etc. " Replace a character by its next, A --> B, B --> C, etc.
map ,a `a,jGi?=,ma map ,a `a,jGi?=,ma

View File

@ -3,7 +3,7 @@
" Maintainer: Debian Vim Maintainers " Maintainer: Debian Vim Maintainers
" 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: 2018 May 03 " Last Change: 2018 Oct 30
" URL: https://salsa.debian.org/vim-team/vim-debian/blob/master/syntax/debchangelog.vim " URL: https://salsa.debian.org/vim-team/vim-debian/blob/master/syntax/debchangelog.vim
" Standard syntax initialization " Standard syntax initialization
@ -21,7 +21,7 @@ let s:binNMU='binary-only=yes'
syn match debchangelogName contained "^[[:alnum:]][[:alnum:].+-]\+ " syn match debchangelogName contained "^[[:alnum:]][[:alnum:].+-]\+ "
exe 'syn match debchangelogFirstKV contained "; \('.s:urgency.'\|'.s:binNMU.'\)"' exe 'syn match debchangelogFirstKV contained "; \('.s:urgency.'\|'.s:binNMU.'\)"'
exe 'syn match debchangelogOtherKV contained ", \('.s:urgency.'\|'.s:binNMU.'\)"' exe 'syn match debchangelogOtherKV contained ", \('.s:urgency.'\|'.s:binNMU.'\)"'
syn match debchangelogTarget contained "\v %(frozen|unstable|sid|%(testing|%(old)=stable)%(-proposed-updates|-security)=|experimental|squeeze-%(backports%(-sloppy)=|volatile|lts|security)|%(wheezy|jessie)%(-backports%(-sloppy)=|-security)=|stretch%(-backports|-security)=|%(devel|precise|trusty|vivid|wily|xenial|yakkety|zesty|artful|bionic|cosmic)%(-%(security|proposed|updates|backports|commercial|partner))=)+" syn match debchangelogTarget contained "\v %(frozen|unstable|sid|%(testing|%(old)=stable)%(-proposed-updates|-security)=|experimental|squeeze-%(backports%(-sloppy)=|volatile|lts|security)|%(wheezy|jessie)%(-backports%(-sloppy)=|-security)=|stretch%(-backports|-security)=|%(devel|precise|trusty|vivid|wily|xenial|yakkety|zesty|artful|bionic|cosmic|disco)%(-%(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

@ -2,7 +2,7 @@
" Language: Debian sources.list " Language: Debian sources.list
" Maintainer: Debian Vim Maintainers " Maintainer: Debian Vim Maintainers
" Former Maintainer: Matthijs Mohlmann <matthijs@cacholong.nl> " Former Maintainer: Matthijs Mohlmann <matthijs@cacholong.nl>
" Last Change: 2018 Aug 11 " Last Change: 2018 Oct 30
" URL: https://salsa.debian.org/vim-team/vim-debian/blob/master/syntax/debsources.vim " URL: https://salsa.debian.org/vim-team/vim-debian/blob/master/syntax/debsources.vim
" Standard syntax initialization " Standard syntax initialization
@ -25,7 +25,7 @@ let s:supported = [
\ 'oldstable', 'stable', 'testing', 'unstable', 'experimental', \ 'oldstable', 'stable', 'testing', 'unstable', 'experimental',
\ 'wheezy', 'jessie', 'stretch', 'sid', 'rc-buggy', \ 'wheezy', 'jessie', 'stretch', 'sid', 'rc-buggy',
\ \
\ 'trusty', 'xenial', 'bionic', 'cosmic', 'devel' \ 'trusty', 'xenial', 'bionic', 'cosmic', 'disco', 'devel'
\ ] \ ]
let s:unsupported = [ let s:unsupported = [
\ 'buzz', 'rex', 'bo', 'hamm', 'slink', 'potato', \ 'buzz', 'rex', 'bo', 'hamm', 'slink', 'potato',

106
runtime/syntax/raml.vim Normal file
View File

@ -0,0 +1,106 @@
" Vim syntax file
" Language: RAML (RESTful API Modeling Language)
" Maintainer: Eric Hopkins <eric.on.tech@gmail.com>
" URL: https://github.com/in3d/vim-raml
" License: Same as Vim
" Last Change: 2018-11-03
if exists("b:current_syntax")
finish
endif
let s:cpo_save = &cpo
set cpo&vim
syn keyword ramlTodo contained TODO FIXME XXX NOTE
syn region ramlComment display oneline start='\%(^\|\s\)#' end='$'
\ contains=ramlTodo,@Spell
syn region ramlVersion display oneline start='#%RAML' end='$'
syn match ramlNodeProperty '!\%(![^\\^% ]\+\|[^!][^:/ ]*\)'
syn match ramlAnchor '&.\+'
syn match ramlAlias '\*.\+'
syn match ramlDelimiter '[-,:]'
syn match ramlBlock '[\[\]{}>|]'
syn match ramlOperator '[?+-]'
syn match ramlKey '\h\+\(?\)\?\ze\s*:'
syn match ramlKey '\w\+\(\s\+\w\+\)*\(?\)\?\ze\s*:'
syn match routeKey '\/\w\+\(\s\+\w\+\)*\ze\s*:'
syn match routeKey 'application\/\w\+\ze\s*:'
syn match routeParamKey '\/{\w\+}*\ze\s*:'
syn region ramlString matchgroup=ramlStringDelimiter
\ start=+\s"+ skip=+\\"+ end=+"+
\ contains=ramlEscape
syn region ramlString matchgroup=ramlStringDelimiter
\ start=+\s'+ skip=+''+ end=+'+
\ contains=ramlStringEscape
syn region ramlParameter matchgroup=ramlParameterDelimiter
\ start=+<<+ skip=+''+ end=+>>+
syn match ramlEscape contained display +\\[\\"abefnrtv^0_ NLP]+
syn match ramlEscape contained display '\\x\x\{2}'
syn match ramlEscape contained display '\\u\x\{4}'
syn match ramlEscape contained display '\\U\x\{8}'
syn match ramlEscape display '\\\%(\r\n\|[\r\n]\)'
syn match ramlStringEscape contained +''+
syn match ramlNumber display
\ '\<[+-]\=\d\+\%(\.\d\+\%([eE][+-]\=\d\+\)\=\)\='
syn match ramlNumber display '0\o\+'
syn match ramlNumber display '0x\x\+'
syn match ramlNumber display '([+-]\=[iI]nf)'
syn match ramlNumber display '(NaN)'
syn match ramlConstant '\<[~yn]\>'
syn keyword ramlConstant true True TRUE false False FALSE
syn keyword ramlConstant yes Yes on ON no No off OFF
syn keyword ramlConstant null Null NULL nil Nil NIL
syn keyword httpVerbs get post put delete head patch options
syn keyword ramlTypes string number integer date boolean file
syn match ramlTimestamp '\d\d\d\d-\%(1[0-2]\|\d\)-\%(3[0-2]\|2\d\|1\d\|\d\)\%( \%([01]\d\|2[0-3]\):[0-5]\d:[0-5]\d.\d\d [+-]\%([01]\d\|2[0-3]\):[0-5]\d\|t\%([01]\d\|2[0-3]\):[0-5]\d:[0-5]\d.\d\d[+-]\%([01]\d\|2[0-3]\):[0-5]\d\|T\%([01]\d\|2[0-3]\):[0-5]\d:[0-5]\d.\dZ\)\='
syn region ramlDocumentHeader start='---' end='$' contains=ramlDirective
syn match ramlDocumentEnd '\.\.\.'
syn match ramlDirective contained '%[^:]\+:.\+'
hi def link ramlVersion String
hi def link routeInterpolation String
hi def link ramlInterpolation Constant
hi def link ramlTodo Todo
hi def link ramlComment Comment
hi def link ramlDocumentHeader PreProc
hi def link ramlDocumentEnd PreProc
hi def link ramlDirective Keyword
hi def link ramlNodeProperty Type
hi def link ramlAnchor Type
hi def link ramlAlias Type
hi def link ramlBlock Operator
hi def link ramlOperator Operator
hi def link routeParamKey SpecialChar
hi def link ramlKey Identifier
hi def link routeKey SpecialChar
hi def link ramlParameterDelimiter Type
hi def link ramlParameter Type
hi def link ramlString String
hi def link ramlStringDelimiter ramlString
hi def link ramlEscape SpecialChar
hi def link ramlStringEscape SpecialChar
hi def link ramlNumber Number
hi def link ramlConstant Constant
hi def link ramlTimestamp Number
hi def link httpVerbs Statement
hi def link ramlTypes Type
hi def link ramlDelimiter Delimiter
let b:current_syntax = "raml"
let &cpo = s:cpo_save
unlet s:cpo_save

View File

@ -23,7 +23,7 @@ line 2), which makes it impossible for the errorformat to correctly
display them ! display them !
When working on different platforms, and with different compilers, When working on different platforms, and with different compilers,
ccfilter eases the utilization of quickfix, due to it's standardized ccfilter eases the utilization of quickfix, due to its standardized
output, allowing to have in .vimrc a plain output, allowing to have in .vimrc a plain
.br .br
.B \ \ \ \ :set\ errorformat=%f:%l:%c:%t:%m .B \ \ \ \ :set\ errorformat=%f:%l:%c:%t:%m

View File

@ -3,22 +3,22 @@
# Do ":help uganda" in Vim to read copying and usage conditions. # Do ":help uganda" in Vim to read copying and usage conditions.
# Do ":help credits" in Vim to see a list of people who contributed. # Do ":help credits" in Vim to see a list of people who contributed.
# #
# Previous-Translator(s): # Previous-Translator(s):
# Georg Dahn <georg.dahn@gmail.com> # Georg Dahn <georg.dahn@gmail.com>
# Johannes Zellner <johannes@zellner.org> # Johannes Zellner <johannes@zellner.org>
# Gerfried Fuchs <alfie@ist.org> # Gerfried Fuchs <alfie@ist.org>
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Vim(deutsch)\n" "Project-Id-Version: Vim\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-06-24 10:50+0200\n" "POT-Creation-Date: 2018-11-01 09:43+0100\n"
"PO-Revision-Date: 2008-05-24 17:26+0200\n" "PO-Revision-Date: 2008-05-24 17:26+0200\n"
"Last-Translator: Christian Brabandt <cb@256bit.org>\n" "Last-Translator: Christian Brabandt <cb@256bit.org>\n"
"Language-Team: German\n" "Language-Team: German\n"
"Language: de\n" "Language: de\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO_8859-1\n" "Content-Type: text/plain; charset=ISO-8859-1\n"
"Content-Transfer-Encoding: 8-bit\n" "Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
msgid "E831: bf_key_init() called with empty password" msgid "E831: bf_key_init() called with empty password"
@ -58,34 +58,31 @@ msgid "E937: Attempt to delete a buffer that is in use"
msgstr "E937: Versuch, Puffer zu l<>schen, der noch benutzt wird." msgstr "E937: Versuch, Puffer zu l<>schen, der noch benutzt wird."
msgid "E515: No buffers were unloaded" msgid "E515: No buffers were unloaded"
msgstr "E515: Keine Puffer wurden entladen." msgstr "E515: Kein Puffer wurden entladen."
msgid "E516: No buffers were deleted" msgid "E516: No buffers were deleted"
msgstr "E516: Keine Puffer wurden gel<65>scht." msgstr "E516: Kein Puffer wurde gel<65>scht."
msgid "E517: No buffers were wiped out" msgid "E517: No buffers were wiped out"
msgstr "E517: Keine Puffer wurden vollst<73>ndig gel<65>scht." msgstr "E517: Kein Puffer wurde vollst<73>ndig gel<65>scht."
msgid "1 buffer unloaded"
msgstr "ein Puffer entladen"
#, c-format #, c-format
msgid "%d buffers unloaded" msgid "%d buffer unloaded"
msgstr "%d Puffer entladen" msgid_plural "%d buffers unloaded"
msgstr[0] "%d Puffer entladen"
msgid "1 buffer deleted" msgstr[1] "%d Puffer entladen"
msgstr "ein Puffer gel<65>scht"
#, c-format #, c-format
msgid "%d buffers deleted" msgid "%d buffer deleted"
msgstr "%d Puffer gel<65>scht" msgid_plural "%d buffers deleted"
msgstr[0] "%d Puffer gel<65>scht"
msgid "1 buffer wiped out" msgstr[1] "%d Puffer gel<65>scht"
msgstr "ein Puffer vollst<73>ndig gel<65>scht"
#, c-format #, c-format
msgid "%d buffers wiped out" msgid "%d buffer wiped out"
msgstr "%d Puffer vollst<73>ndig gel<65>scht" msgid_plural "%d buffers wiped out"
msgstr[0] "%d Puffer vollst<73>ndig gel<65>scht"
msgstr[1] "%d Puffer vollst<73>ndig gel<65>scht"
msgid "E90: Cannot unload last buffer" msgid "E90: Cannot unload last buffer"
msgstr "E90: Kann letzten Puffer nicht ausladen" msgstr "E90: Kann letzten Puffer nicht ausladen"
@ -160,12 +157,10 @@ msgid "[readonly]"
msgstr "[Nur Lesen]" msgstr "[Nur Lesen]"
#, c-format #, c-format
msgid "1 line --%d%%--" msgid "%ld line --%d%%--"
msgstr "1 Zeile --%d%%--" msgid_plural "%ld lines --%d%%--"
msgstr[0] "%ld Zeile --%d%%--"
#, c-format msgstr[1] "%ld Zeilen --%d%%--"
msgid "%ld lines --%d%%--"
msgstr "%ld Zeilen --%d%%--"
#, c-format #, c-format
msgid "line %ld of %ld --%d%%-- col " msgid "line %ld of %ld --%d%%-- col "
@ -320,12 +315,21 @@ msgstr "E737: Schl
msgid "E96: Cannot diff more than %ld buffers" msgid "E96: Cannot diff more than %ld buffers"
msgstr "E96: Kann Diff f<>r mehr als %ld Puffer nicht erstellen." msgstr "E96: Kann Diff f<>r mehr als %ld Puffer nicht erstellen."
#, c-format
msgid "Not enough memory to use internal diff for buffer \"%s\""
msgstr ""
"Nicht gen<65>gend Speicher vorhanden, um Puffer \"%s\" mit internem "
"Diffalgorithmus zu nutzen."
msgid "E810: Cannot read or write temp files" msgid "E810: Cannot read or write temp files"
msgstr "E810: Kann tempor<6F>re Datei nicht lesen oder schreiben." msgstr "E810: Kann tempor<6F>re Datei nicht lesen oder schreiben."
msgid "E97: Cannot create diffs" msgid "E97: Cannot create diffs"
msgstr "E97: Kann keinen Diff erstellen." msgstr "E97: Kann keinen Diff erstellen."
msgid "E960: Problem creating the internal diff"
msgstr "E960: Problem internen Diffalgorithmus anzuwenden"
msgid "Patch file" msgid "Patch file"
msgstr "Patch-Datei" msgstr "Patch-Datei"
@ -335,6 +339,9 @@ msgstr "E816: Kann Patch Ausgabe nicht lesen."
msgid "E98: Cannot read diff output" msgid "E98: Cannot read diff output"
msgstr "E98: Diff-Ausgabe kann nicht gelesen werden." msgstr "E98: Diff-Ausgabe kann nicht gelesen werden."
msgid "E959: Invalid diff format."
msgstr "E959: Ung<6E>ltiges Diff-Format"
msgid "E99: Current buffer is not in diff mode" msgid "E99: Current buffer is not in diff mode"
msgstr "E99: Aktueller Puffer ist nicht im Diff-Modus." msgstr "E99: Aktueller Puffer ist nicht im Diff-Modus."
@ -667,6 +674,9 @@ msgstr ""
"\n" "\n"
"\tZuletzt gesetzt in " "\tZuletzt gesetzt in "
msgid " line "
msgstr " Zeile "
msgid "E691: Can only compare List with List" msgid "E691: Can only compare List with List"
msgstr "E691: Kann nur eine Liste mit einer Liste vergleichen." msgstr "E691: Kann nur eine Liste mit einer Liste vergleichen."
@ -747,6 +757,9 @@ msgstr "E916: kein g
msgid "E701: Invalid type for len()" msgid "E701: Invalid type for len()"
msgstr "E701: Unzul<75>ssiger Typ f<>r len()" msgstr "E701: Unzul<75>ssiger Typ f<>r len()"
msgid "E957: Invalid window number"
msgstr "E957: Ung<6E>ltige Fensternummer"
#, c-format #, c-format
msgid "E798: ID is reserved for \":match\": %ld" msgid "E798: ID is reserved for \":match\": %ld"
msgstr "E798: ID ist f<>r \":match\" reserviert: %ld" msgstr "E798: ID ist f<>r \":match\" reserviert: %ld"
@ -844,12 +857,11 @@ msgstr "> %d, Hex %08x, Oktal %o"
msgid "E134: Move lines into themselves" msgid "E134: Move lines into themselves"
msgstr "E134: Verschiebe Zeilen in sich selbst" msgstr "E134: Verschiebe Zeilen in sich selbst"
msgid "1 line moved"
msgstr "1 Zeile verschoben"
#, c-format #, c-format
msgid "%ld lines moved" msgid "%ld line moved"
msgstr "%ld Zeilen verschoben" msgid_plural "%ld lines moved"
msgstr[0] "%ld Zeile verschoben"
msgstr[1] "%ld Zeilen verschoben"
#, c-format #, c-format
msgid "%ld lines filtered" msgid "%ld lines filtered"
@ -1004,26 +1016,29 @@ msgstr "ersetze durch %s (y/n/a/q/l/^E/^Y)?"
msgid "(Interrupted) " msgid "(Interrupted) "
msgstr "(Unterbrochen) " msgstr "(Unterbrochen) "
msgid "1 match" #, c-format
msgstr "ein Treffer" msgid "%ld match on %ld line"
msgid_plural "%ld matches on %ld line"
msgid "1 substitution" msgstr[0] " %ld Treffer in %ld Zeile"
msgstr "eine Ersetzung" msgstr[1] " %ld Treffer in %ld Zeile"
#, c-format #, c-format
msgid "%ld matches" msgid "%ld substitution on %ld line"
msgstr "%ld Treffer" msgid_plural "%ld substitutions on %ld line"
msgstr[0] "%ld Ersetzung in %ld Zeile"
msgstr[1] "%ld Ersetzungen in %ld Zeile"
#, c-format #, c-format
msgid "%ld substitutions" msgid "%ld match on %ld lines"
msgstr "%ld Ersetzungen" msgid_plural "%ld matches on %ld lines"
msgstr[0] " %ld Treffer in %ld Zeilen"
msgid " on 1 line" msgstr[1] " %ld Treffer in %ld Zeilen"
msgstr " auf einer Zeile"
#, c-format #, c-format
msgid " on %ld lines" msgid "%ld substitution on %ld lines"
msgstr " auf %ld Zeilen" msgid_plural "%ld substitutions on %ld lines"
msgstr[0] "%ld Ersetzungen in %ld Zeilen"
msgstr[1] "%ld Ersetzungen in %ld Zeilen"
msgid "E147: Cannot do :global recursive with a range" msgid "E147: Cannot do :global recursive with a range"
msgstr "E147: Kann :global nicht rekursiv mit einem Bereich ausf<73>hren." msgstr "E147: Kann :global nicht rekursiv mit einem Bereich ausf<73>hren."
@ -1341,19 +1356,17 @@ msgstr ""
msgid "E319: Sorry, the command is not available in this version" msgid "E319: Sorry, the command is not available in this version"
msgstr "E319: Der Befehl ist in dieser Version nicht implementiert" msgstr "E319: Der Befehl ist in dieser Version nicht implementiert"
msgid "1 more file to edit. Quit anyway?" #, c-format
msgstr "Eine weitere Datei zum Editieren. Trotzdem beenden?" msgid "%d more file to edit. Quit anyway?"
msgid_plural "%d more files to edit. Quit anyway?"
msgstr[0] "%d weitere Datei zum Editieren. Trotzdem beenden?"
msgstr[1] "%d weitere Dateien zum Editieren. Trotzdem beenden?"
#, c-format #, c-format
msgid "%d more files to edit. Quit anyway?" msgid "E173: %ld more file to edit"
msgstr "%d weitere Dateien zum Editieren. Trotzdem beenden?" msgid_plural "E173: %ld more files to edit"
msgstr[0] "E173: %ld weitere Datei zum Editieren"
msgid "E173: 1 more file to edit" msgstr[1] "E173: %ld weitere Dateien zum Editieren"
msgstr "E173: Eine weitere Datei zum Editieren"
#, c-format
msgid "E173: %ld more files to edit"
msgstr "E173: %ld weitere Dateien zum Editieren"
msgid "E174: Command already exists: add ! to replace it" msgid "E174: Command already exists: add ! to replace it"
msgstr "E174: Befehl existiert bereits: ! zum Ersetzen hinzuf<75>gen" msgstr "E174: Befehl existiert bereits: ! zum Ersetzen hinzuf<75>gen"
@ -1538,6 +1551,9 @@ msgstr "E498: kein :source Dateiname zur Ersetzung mit \"<sfile>\""
msgid "E842: no line number to use for \"<slnum>\"" msgid "E842: no line number to use for \"<slnum>\""
msgstr "E842: Keine Zeilennummer f<>r \"<slnum>\" vorhanden." msgstr "E842: Keine Zeilennummer f<>r \"<slnum>\" vorhanden."
msgid "E961: no line number to use for \"<sflnum>\""
msgstr "E961: Keine Zeilennummer f<>r \"<slnum>\" vorhanden."
#, no-c-format #, no-c-format
msgid "E499: Empty file name for '%' or '#', only works with \":p:h\"" msgid "E499: Empty file name for '%' or '#', only works with \":p:h\""
msgstr "E499: Leerer Dateiname f<>r '%' oder '#', funktioniert nur mit \":p:h\"" msgstr "E499: Leerer Dateiname f<>r '%' oder '#', funktioniert nur mit \":p:h\""
@ -1742,9 +1758,6 @@ msgstr "Lese von stdin..."
msgid "E202: Conversion made file unreadable!" msgid "E202: Conversion made file unreadable!"
msgstr "E202: Datei wurde durch Konvertierung unlesbar!" msgstr "E202: Datei wurde durch Konvertierung unlesbar!"
msgid "[fifo/socket]"
msgstr "[fifo/socket]"
msgid "[fifo]" msgid "[fifo]"
msgstr "[fifo]" msgstr "[fifo]"
@ -1925,19 +1938,17 @@ msgstr "[unix]"
msgid "[unix format]" msgid "[unix format]"
msgstr "[unix Format]" msgstr "[unix Format]"
msgid "1 line, " #, c-format
msgstr "eine Zeile, " msgid "%ld line, "
msgid_plural "%ld lines, "
msgstr[0] "%ld Zeile, "
msgstr[1] "%ld Zeilen, "
#, c-format #, c-format
msgid "%ld lines, " msgid "%lld character"
msgstr "%ld Zeilen, " msgid_plural "%lld characters"
msgstr[0] "%lld Zeichen"
msgid "1 character" msgstr[1] "%lld Zeichen"
msgstr "ein Zeichen"
#, c-format
msgid "%lld characters"
msgstr "%lld Zeichen"
msgid "[noeol]" msgid "[noeol]"
msgstr "[noeol]" msgstr "[noeol]"
@ -2323,11 +2334,11 @@ msgstr "&R
msgid "Open tab..." msgid "Open tab..."
msgstr "<22>ffne Reiter..." msgstr "<22>ffne Reiter..."
msgid "Find string (use '\\\\' to find a '\\')" msgid "Find string"
msgstr "Suche (benutze '\\\\' um ein '\\' zu finden)" msgstr "Suche Zeichenkette"
msgid "Find & Replace (use '\\\\' to find a '\\')" msgid "Find & Replace"
msgstr "Suche & Ersetze (benutze '\\\\' um ein '\\' zu finden)" msgstr "Suche & Ersetze"
msgid "Not Used" msgid "Not Used"
msgstr "Nicht verwendet" msgstr "Nicht verwendet"
@ -3202,8 +3213,8 @@ msgstr ""
msgid "" msgid ""
"--remote-tab[-wait][-silent] <files> As --remote but use tab page per file" "--remote-tab[-wait][-silent] <files> As --remote but use tab page per file"
msgstr "" msgstr ""
"--remote-tab[-wait][-silent] <Dateien> Wie --remote, aber <20>ffne ein Reiter f<EFBFBD>r " "--remote-tab[-wait][-silent] <Dateien> Wie --remote, aber <20>ffne ein Reiter "
"jede Datei." "f<EFBFBD>r jede Datei."
msgid "--remote-send <keys>\tSend <keys> to a Vim server and exit" msgid "--remote-send <keys>\tSend <keys> to a Vim server and exit"
msgstr "--remote-send <keys>\tSchicke <keys> zu einem Vim Server und beende" msgstr "--remote-send <keys>\tSchicke <keys> zu einem Vim Server und beende"
@ -3717,8 +3728,8 @@ msgstr ""
"\n" "\n"
" Process-ID: " " Process-ID: "
msgid " (still running)" msgid " (STILL RUNNING)"
msgstr " (l<EFBFBD>uft noch)" msgstr " (L<EFBFBD>UFT NOCH)"
msgid "" msgid ""
"\n" "\n"
@ -3813,6 +3824,9 @@ msgstr ""
msgid "While opening file \"" msgid "While opening file \""
msgstr "Beim <20>ffnen der Datei \"" msgstr "Beim <20>ffnen der Datei \""
msgid " CANNOT BE FOUND"
msgstr " WURDE NICHT GEFUNDEN"
msgid " NEWER than swap file!\n" msgid " NEWER than swap file!\n"
msgstr " neuer als Auslagerungsdatei!\n" msgstr " neuer als Auslagerungsdatei!\n"
@ -4033,19 +4047,17 @@ msgstr ""
msgid "Type number and <Enter> (empty cancels): " msgid "Type number and <Enter> (empty cancels): "
msgstr "Gew<65>nschte Nummer und <Enter> eingeben (abbrechen mit <Enter>): " msgstr "Gew<65>nschte Nummer und <Enter> eingeben (abbrechen mit <Enter>): "
msgid "1 more line" #, c-format
msgstr "eine Zeile mehr" msgid "%ld more line"
msgid_plural "%ld more lines"
msgid "1 line less" msgstr[0] "%ld Zeile mehr"
msgstr "eine Zeile weniger" msgstr[1] "%ld Zeilen mehr"
#, c-format #, c-format
msgid "%ld more lines" msgid "%ld line less"
msgstr "%ld Zeilen mehr" msgid_plural "%ld fewer lines"
msgstr[0] "%ld Zeile weniger"
#, c-format msgstr[1] "%ld Zeilen weniger"
msgid "%ld fewer lines"
msgstr "%ld Zeilen weniger"
msgid " (Interrupted)" msgid " (Interrupted)"
msgstr " (Unterbrochen)" msgstr " (Unterbrochen)"
@ -4186,31 +4198,26 @@ msgstr ""
"beenden" "beenden"
#, c-format #, c-format
msgid "1 line %sed 1 time" msgid "%ld line %sed %d time"
msgstr "eine Zeile ein Mal %s" msgid_plural "%ld line %sed %d times"
msgstr[0] "%ld Zeile %s %d Mal"
msgstr[1] "%ld Zeile %s %d Mal"
#, c-format #, c-format
msgid "1 line %sed %d times" msgid "%ld lines %sed %d time"
msgstr "eine Zeile %s %d Mal" msgid_plural "%ld lines %sed %d times"
msgstr[0] "%ld Zeilen %s %d Mal"
#, c-format msgstr[1] "%ld Zeilen %s %d Mal"
msgid "%ld lines %sed 1 time"
msgstr "%ld Zeilen %s ein Mal"
#, c-format
msgid "%ld lines %sed %d times"
msgstr "%ld Zeilen %s %d Mal"
#, c-format #, c-format
msgid "%ld lines to indent... " msgid "%ld lines to indent... "
msgstr "%ld Zeilen zum Einr<6E>cken... " msgstr "%ld Zeilen zum Einr<6E>cken... "
msgid "1 line indented "
msgstr "eine Zeile einger<65>ckt... "
#, c-format #, c-format
msgid "%ld lines indented " msgid "%ld line indented "
msgstr "%ld Zeilen einger<65>ckt... " msgid_plural "%ld lines indented "
msgstr[0] "%ld Zeile einger<65>ckt... "
msgstr[1] "%ld Zeilen einger<65>ckt... "
msgid "E748: No previously used register" msgid "E748: No previously used register"
msgstr "E748: Kein bereits verwendetes Register" msgstr "E748: Kein bereits verwendetes Register"
@ -4218,12 +4225,11 @@ msgstr "E748: Kein bereits verwendetes Register"
msgid "cannot yank; delete anyway" msgid "cannot yank; delete anyway"
msgstr "kann nicht kopieren; l<>sche trotzdem" msgstr "kann nicht kopieren; l<>sche trotzdem"
msgid "1 line changed"
msgstr "eine Zeile ge<67>ndert"
#, c-format #, c-format
msgid "%ld lines changed" msgid "%ld line changed"
msgstr "%ld Zeilen ge<67>ndert" msgid_plural "%ld lines changed"
msgstr[0] "%ld Zeile ge<67>ndert"
msgstr[1] "%ld Zeilen ge<67>ndert"
#, c-format #, c-format
msgid "freeing %ld lines" msgid "freeing %ld lines"
@ -4234,20 +4240,16 @@ msgid " into \"%c"
msgstr " in \"%c" msgstr " in \"%c"
#, c-format #, c-format
msgid "block of 1 line yanked%s" msgid "block of %ld line yanked%s"
msgstr "Block von einer Zeile kopiert%s" msgid_plural "block of %ld lines yanked%s"
msgstr[0] "Block von %ld Zeile kopiert%s"
msgstr[1] "Block von %ld Zeilen kopiert%s"
#, c-format #, c-format
msgid "1 line yanked%s" msgid "%ld line yanked%s"
msgstr "eine Zeile kopiert%s" msgid_plural "%ld lines yanked%s"
msgstr[0] "%ld Zeile kopiert%s"
#, c-format msgstr[1] "%ld Zeilen kopiert%s"
msgid "block of %ld lines yanked%s"
msgstr "Block von %ld Zeilen kopiert%s"
#, c-format
msgid "%ld lines yanked%s"
msgstr "%ld Zeilen kopiert%s"
#, c-format #, c-format
msgid "E353: Nothing in register %s" msgid "E353: Nothing in register %s"
@ -4840,6 +4842,9 @@ msgstr "E69: Fehlende ] nach %s%%["
msgid "E70: Empty %s%%[]" msgid "E70: Empty %s%%[]"
msgstr "E70: %s%%[] ist leer" msgstr "E70: %s%%[] ist leer"
msgid "E956: Cannot use pattern recursively"
msgstr "E956: Kann Muster nicht rekursiv ausf<73>hren"
msgid "E65: Illegal back reference" msgid "E65: Illegal back reference"
msgstr "E65: Ung<6E>ltige R<>ckreferenz" msgstr "E65: Ung<6E>ltige R<>ckreferenz"
@ -4957,7 +4962,7 @@ msgstr "E873: (NFA regexp) geeigneter Abschlussfehler"
msgid "Could not open temporary log file for writing, displaying on stderr... " msgid "Could not open temporary log file for writing, displaying on stderr... "
msgstr "" msgstr ""
"Konnte tempor<6F>re Datei zum Schreiben <20>ffnen, zeige auf Standard " "Konnte tempor<6F>re Datei nicht zum Schreiben <20>ffnen, zeige auf Standard "
"Fehlerausgabe... " "Fehlerausgabe... "
msgid "E874: (NFA) Could not pop the stack!" msgid "E874: (NFA) Could not pop the stack!"
@ -5470,6 +5475,9 @@ msgstr "E783: Doppeltes Zeichen im MAP Eintrag"
msgid "No Syntax items defined for this buffer" msgid "No Syntax items defined for this buffer"
msgstr "Keine Syntax-Elemente f<>r diesen Puffer definiert" msgstr "Keine Syntax-Elemente f<>r diesen Puffer definiert"
msgid "'redrawtime' exceeded, syntax highlighting disabled"
msgstr "'redrawtime' <20>berschritten, Syntaxhighlighting deaktiviert"
msgid "syntax conceal on" msgid "syntax conceal on"
msgstr "Syntax conceal aktiviert" msgstr "Syntax conceal aktiviert"
@ -5500,6 +5508,9 @@ msgstr ""
msgid "syntax iskeyword " msgid "syntax iskeyword "
msgstr "syntax iskeyword " msgstr "syntax iskeyword "
msgid "syntax iskeyword not set"
msgstr "syntax iskeyword nicht gesetzt"
#, c-format #, c-format
msgid "E391: No such syntax cluster: %s" msgid "E391: No such syntax cluster: %s"
msgstr "E391: Kein solcher Syntax Cluster: %s" msgstr "E391: Kein solcher Syntax Cluster: %s"
@ -5841,6 +5852,9 @@ msgstr "F
msgid "finished" msgid "finished"
msgstr "beendet" msgstr "beendet"
msgid "E958: Job already finished"
msgstr "E958: Job bereits beendet"
#, c-format #, c-format
msgid "E953: File exists: %s" msgid "E953: File exists: %s"
msgstr "E953: Datei existiert bereits: %s" msgstr "E953: Datei existiert bereits: %s"
@ -5983,8 +5997,10 @@ msgid "number changes when saved"
msgstr "Nummer <20>nderung Wann Gesichert" msgstr "Nummer <20>nderung Wann Gesichert"
#, c-format #, c-format
msgid "%ld seconds ago" msgid "%ld second ago"
msgstr "vor %ld Sekunden" msgid_plural "%ld seconds ago"
msgstr[0] "vor %ld Sekunde"
msgstr[1] "vor %ld Sekunden"
msgid "E790: undojoin is not allowed after undo" msgid "E790: undojoin is not allowed after undo"
msgstr "E790: 'undojoin' ist nicht erlaubt nach 'undo'" msgstr "E790: 'undojoin' ist nicht erlaubt nach 'undo'"
@ -6485,6 +6501,9 @@ msgstr "Differenz mit Vim"
msgid "Edit with &Vim" msgid "Edit with &Vim"
msgstr "Editiere mit &Vim" msgstr "Editiere mit &Vim"
msgid "Edit with existing Vim"
msgstr "Editiere mit vorhandenem Vim"
msgid "Edit with existing Vim - " msgid "Edit with existing Vim - "
msgstr "Editiere mit vorhandenem Vim - " msgstr "Editiere mit vorhandenem Vim - "

View File

@ -17,8 +17,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Vim 8.1\n" "Project-Id-Version: Vim 8.1\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-09-01 18:15+0200\n" "POT-Creation-Date: 2018-10-30 09:47+0100\n"
"PO-Revision-Date: 2018-09-01 18:38+0200\n" "PO-Revision-Date: 2018-10-30 10:02+0100\n"
"Last-Translator: Dominique PELLÉ <dominique.pelle@gmail.com>\n" "Last-Translator: Dominique PELLÉ <dominique.pelle@gmail.com>\n"
"Language-Team: Esperanto\n" "Language-Team: Esperanto\n"
"Language: eo\n" "Language: eo\n"
@ -113,7 +113,7 @@ msgstr ""
"transpasi)" "transpasi)"
msgid "E948: Job still running (add ! to end the job)" msgid "E948: Job still running (add ! to end the job)"
msgstr "E948: Tasko akoraŭ aktiva (aldonu ! por fini la taskon)" msgstr "E948: Tasko ankoraŭ aktiva (aldonu ! por fini la taskon)"
msgid "E37: No write since last change (add ! to override)" msgid "E37: No write since last change (add ! to override)"
msgstr "E37: Neniu skribo de post lasta ŝanĝo (aldonu ! por transpasi)" msgstr "E37: Neniu skribo de post lasta ŝanĝo (aldonu ! por transpasi)"
@ -322,12 +322,19 @@ msgstr "E737: Ŝlosilo jam ekzistas: %s"
msgid "E96: Cannot diff more than %ld buffers" msgid "E96: Cannot diff more than %ld buffers"
msgstr "E96: Ne eblas dosierdiferenci pli ol %ld bufrojn" msgstr "E96: Ne eblas dosierdiferenci pli ol %ld bufrojn"
#, c-format
msgid "Not enough memory to use internal diff for buffer \"%s\""
msgstr "Ne sufiĉa memoro por uzi internan dosierdiferencilon por bufro \"%s\""
msgid "E810: Cannot read or write temp files" msgid "E810: Cannot read or write temp files"
msgstr "E810: Ne eblas legi aŭ skribi provizorajn dosierojn" msgstr "E810: Ne eblas legi aŭ skribi provizorajn dosierojn"
msgid "E97: Cannot create diffs" msgid "E97: Cannot create diffs"
msgstr "E97: Ne eblas krei dosierdiferencojn" msgstr "E97: Ne eblas krei dosierdiferencojn"
msgid "E960: Problem creating the internal diff"
msgstr "E960: Problemo dum kreado de la interna dosierdiferencilo"
msgid "Patch file" msgid "Patch file"
msgstr "Flika dosiero" msgstr "Flika dosiero"
@ -337,6 +344,9 @@ msgstr "E816: Ne eblas legi eliron de flikilo \"patch\""
msgid "E98: Cannot read diff output" msgid "E98: Cannot read diff output"
msgstr "E98: Ne eblas legi eliron de dosierdiferencilo \"diff\"" msgstr "E98: Ne eblas legi eliron de dosierdiferencilo \"diff\""
msgid "E959: Invalid diff format."
msgstr "E959: Nevalida formato de dosierdiferenco"
msgid "E99: Current buffer is not in diff mode" msgid "E99: Current buffer is not in diff mode"
msgstr "E99: Aktuala bufro ne estas en dosierdiferenca reĝimo" msgstr "E99: Aktuala bufro ne estas en dosierdiferenca reĝimo"
@ -667,6 +677,9 @@ msgstr ""
"\n" "\n"
"\tLaste ŝaltita de " "\tLaste ŝaltita de "
msgid " line "
msgstr " linio "
msgid "E691: Can only compare List with List" msgid "E691: Can only compare List with List"
msgstr "E691: Eblas nur kompari Liston kun Listo" msgstr "E691: Eblas nur kompari Liston kun Listo"
@ -1527,6 +1540,9 @@ msgstr "E498: neniu dosiernomo \":source\" por anstataŭigi al \"<sfile>\""
msgid "E842: no line number to use for \"<slnum>\"" msgid "E842: no line number to use for \"<slnum>\""
msgstr "E842: neniu uzebla numero de linio por \"<slnum>\"" msgstr "E842: neniu uzebla numero de linio por \"<slnum>\""
msgid "E961: no line number to use for \"<sflnum>\""
msgstr "E961: neniu uzebla numero de linio por \"<sflnum>\""
#, no-c-format #, no-c-format
msgid "E499: Empty file name for '%' or '#', only works with \":p:h\"" msgid "E499: Empty file name for '%' or '#', only works with \":p:h\""
msgstr "E499: Malplena dosiernomo por '%' aŭ '#', nur funkcias kun \":p:h\"" msgstr "E499: Malplena dosiernomo por '%' aŭ '#', nur funkcias kun \":p:h\""
@ -3662,8 +3678,8 @@ msgstr ""
"\n" "\n"
" proceza ID: " " proceza ID: "
msgid " (still running)" msgid " (STILL RUNNING)"
msgstr " (ankoraŭ ruliĝas)" msgstr " (ANKORAŬ RULIĜAS)"
msgid "" msgid ""
"\n" "\n"
@ -3758,6 +3774,9 @@ msgstr ""
msgid "While opening file \"" msgid "While opening file \""
msgstr "Dum malfermo de dosiero \"" msgstr "Dum malfermo de dosiero \""
msgid " CANNOT BE FOUND"
msgstr " NETROVITA"
msgid " NEWER than swap file!\n" msgid " NEWER than swap file!\n"
msgstr " PLI NOVA ol permutodosiero .swp!\n" msgstr " PLI NOVA ol permutodosiero .swp!\n"
@ -4739,7 +4758,7 @@ msgid "E944: Reverse range in character class"
msgstr "E944: Inversa amplekso en klaso de signoj" msgstr "E944: Inversa amplekso en klaso de signoj"
msgid "E945: Range too large in character class" msgid "E945: Range too large in character class"
msgstr "E945: tro larga amplekso de klaso de signoj" msgstr "E945: tro larĝa amplekso de klaso de signoj"
#, c-format #, c-format
msgid "E53: Unmatched %s%%(" msgid "E53: Unmatched %s%%("
@ -4858,7 +4877,7 @@ msgid "E867: (NFA) Unknown operator '\\z%c'"
msgstr "E867: (NFA) Nekonata operatoro '\\z%c'" msgstr "E867: (NFA) Nekonata operatoro '\\z%c'"
msgid "E951: \\% value too large" msgid "E951: \\% value too large"
msgstr "E951: tro larga valoro de \\%" msgstr "E951: tro larĝa valoro de \\%"
#, c-format #, c-format
msgid "E867: (NFA) Unknown operator '\\%%%c'" msgid "E867: (NFA) Unknown operator '\\%%%c'"
@ -5771,6 +5790,9 @@ msgstr "ruliĝas"
msgid "finished" msgid "finished"
msgstr "finiĝis" msgstr "finiĝis"
msgid "E958: Job already finished"
msgstr "E958: Tasko jam finiĝis"
#, c-format #, c-format
msgid "E953: File exists: %s" msgid "E953: File exists: %s"
msgstr "E953: Dosiero jam ekzistas: %s" msgstr "E953: Dosiero jam ekzistas: %s"
@ -6419,6 +6441,9 @@ msgstr "Kompari per Vim"
msgid "Edit with &Vim" msgid "Edit with &Vim"
msgstr "Redakti per &Vim" msgstr "Redakti per &Vim"
msgid "Edit with existing Vim"
msgstr "Redakti per ekzistanta Vim"
msgid "Edit with existing Vim - " msgid "Edit with existing Vim - "
msgstr "Redakti per ekzistanta Vim - " msgstr "Redakti per ekzistanta Vim - "

View File

@ -12,8 +12,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Vim 8.1\n" "Project-Id-Version: Vim 8.1\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-09-01 14:20+0200\n" "POT-Creation-Date: 2018-10-30 09:47+0100\n"
"PO-Revision-Date: 2018-09-01 17:15+0200\n" "PO-Revision-Date: 2018-10-30 10:09+0100\n"
"Last-Translator: Dominique Pell<6C> <dominique.pelle@gmail.com>\n" "Last-Translator: Dominique Pell<6C> <dominique.pelle@gmail.com>\n"
"Language-Team: French\n" "Language-Team: French\n"
"Language: fr\n" "Language: fr\n"
@ -342,6 +342,10 @@ msgstr "E737: La cl
msgid "E96: Cannot diff more than %ld buffers" msgid "E96: Cannot diff more than %ld buffers"
msgstr "E96: Impossible d'utiliser diff sur plus de %ld tampons" msgstr "E96: Impossible d'utiliser diff sur plus de %ld tampons"
#, c-format
msgid "Not enough memory to use internal diff for buffer \"%s\""
msgstr "Pas assez de m<>moire pour utiliser l'outil diff interne pour le tampon \"%s\""
msgid "E810: Cannot read or write temp files" msgid "E810: Cannot read or write temp files"
msgstr "E810: Impossible de lire ou <20>crire des fichiers temporaires" msgstr "E810: Impossible de lire ou <20>crire des fichiers temporaires"
@ -349,6 +353,9 @@ msgstr "E810: Impossible de lire ou
msgid "E97: Cannot create diffs" msgid "E97: Cannot create diffs"
msgstr "E97: diff ne fonctionne pas" msgstr "E97: diff ne fonctionne pas"
msgid "E960: Problem creating the internal diff"
msgstr "E960: Probl<62>me lors de la cr<63>ation de l'outil diff interne"
msgid "Patch file" msgid "Patch file"
msgstr "Fichier rustine" msgstr "Fichier rustine"
@ -358,6 +365,9 @@ msgstr "E816: Le fichier interm
msgid "E98: Cannot read diff output" msgid "E98: Cannot read diff output"
msgstr "E98: Le fichier interm<72>diaire produit par diff n'a pu <20>tre lu" msgstr "E98: Le fichier interm<72>diaire produit par diff n'a pu <20>tre lu"
msgid "E959: Invalid diff format."
msgstr "E959: Format diff invalide."
msgid "E99: Current buffer is not in diff mode" msgid "E99: Current buffer is not in diff mode"
msgstr "E99: Le tampon courant n'est pas en mode diff" msgstr "E99: Le tampon courant n'est pas en mode diff"
@ -735,6 +745,9 @@ msgstr ""
"\n" "\n"
"\tModifi<66> la derni<6E>re fois dans " "\tModifi<66> la derni<6E>re fois dans "
msgid " line "
msgstr " ligne "
msgid "E691: Can only compare List with List" msgid "E691: Can only compare List with List"
msgstr "E691: Une Liste ne peut <20>tre compar<61>e qu'avec une Liste" msgstr "E691: Une Liste ne peut <20>tre compar<61>e qu'avec une Liste"
@ -1693,6 +1706,9 @@ msgstr "E498: Aucun nom de fichier :source
msgid "E842: no line number to use for \"<slnum>\"" msgid "E842: no line number to use for \"<slnum>\""
msgstr "E842: aucun num<75>ro de ligne <20> utiliser pour \"<slnum>\"" msgstr "E842: aucun num<75>ro de ligne <20> utiliser pour \"<slnum>\""
msgid "E961: no line number to use for \"<sflnum>\""
msgstr "E961: aucun num<75>ro de ligne <20> utiliser pour \"<sflnum>\""
#, no-c-format #, no-c-format
msgid "E499: Empty file name for '%' or '#', only works with \":p:h\"" msgid "E499: Empty file name for '%' or '#', only works with \":p:h\""
msgstr "E499: Nom de fichier vide pour '%' ou '#', ne marche qu'avec \":p:h\"" msgstr "E499: Nom de fichier vide pour '%' ou '#', ne marche qu'avec \":p:h\""
@ -3884,8 +3900,8 @@ msgstr ""
"\n" "\n"
" processus n<> : " " processus n<> : "
msgid " (still running)" msgid " (STILL RUNNING)"
msgstr " (en cours d'ex<65>cution)" msgstr " (EN COURS D'EX<45>CUTION)"
msgid "" msgid ""
"\n" "\n"
@ -3980,6 +3996,9 @@ msgstr ""
msgid "While opening file \"" msgid "While opening file \""
msgstr "Lors de l'ouverture du fichier \"" msgstr "Lors de l'ouverture du fichier \""
msgid " CANNOT BE FOUND"
msgstr " INTROUVABLE"
msgid " NEWER than swap file!\n" msgid " NEWER than swap file!\n"
msgstr " PLUS R<>CENT que le fichier d'<27>change !\n" msgstr " PLUS R<>CENT que le fichier d'<27>change !\n"
@ -6016,6 +6035,9 @@ msgstr "en cours"
msgid "finished" msgid "finished"
msgstr "fini" msgstr "fini"
msgid "E958: Job already finished"
msgstr "E958: T<>che d<>j<EFBFBD> finie"
#, c-format #, c-format
msgid "E953: File exists: %s" msgid "E953: File exists: %s"
msgstr "E953: Le fichier existe d<>j<EFBFBD> : %s" msgstr "E953: Le fichier existe d<>j<EFBFBD> : %s"
@ -6681,6 +6703,9 @@ msgstr "&Comparer avec Vim"
msgid "Edit with &Vim" msgid "Edit with &Vim"
msgstr "<22>diter dans &Vim" msgstr "<22>diter dans &Vim"
msgid "Edit with existing Vim"
msgstr "<22>diter dans le Vim existant"
msgid "Edit with existing Vim - " msgid "Edit with existing Vim - "
msgstr "<22>diter dans le Vim existant - " msgstr "<22>diter dans le Vim existant - "