]> granicus.if.org Git - vim/commitdiff
Update runtime files.
authorBram Moolenaar <Bram@vim.org>
Mon, 26 Oct 2020 20:12:46 +0000 (21:12 +0100)
committerBram Moolenaar <Bram@vim.org>
Mon, 26 Oct 2020 20:12:46 +0000 (21:12 +0100)
83 files changed:
runtime/autoload/zip.vim
runtime/doc/autocmd.txt
runtime/doc/channel.txt
runtime/doc/editing.txt
runtime/doc/eval.txt
runtime/doc/if_mzsch.txt
runtime/doc/insert.txt
runtime/doc/motion.txt
runtime/doc/pi_zip.txt
runtime/doc/popup.txt
runtime/doc/tabpage.txt
runtime/doc/tags
runtime/doc/textprop.txt
runtime/doc/todo.txt
runtime/doc/undo.txt
runtime/doc/usr_11.txt
runtime/doc/version7.txt
runtime/doc/version8.txt
runtime/doc/vim9.txt
runtime/filetype.vim
runtime/ftplugin/erlang.vim
runtime/ftplugin/make.vim
runtime/ftplugin/man.vim
runtime/ftplugin/rpl.vim
runtime/indent/rpl.vim
runtime/indent/tilde.vim
runtime/optwin.vim
runtime/pack/dist/opt/termdebug/plugin/termdebug.vim
runtime/plugin/zipPlugin.vim
runtime/syntax/elf.vim
runtime/syntax/forth.vim
runtime/syntax/fortran.vim
runtime/syntax/groff.vim
runtime/syntax/initng.vim
runtime/syntax/iss.vim
runtime/syntax/lout.vim
runtime/syntax/mmix.vim
runtime/syntax/moo.vim
runtime/syntax/nroff.vim
runtime/syntax/pascal.vim
runtime/syntax/robots.vim
runtime/syntax/rpl.vim
runtime/syntax/rtf.vim
runtime/syntax/tilde.vim
runtime/syntax/xkb.vim
src/po/af.po
src/po/ca.po
src/po/da.po
src/po/de.po
src/po/en_GB.po
src/po/eo.po
src/po/es.po
src/po/fi.po
src/po/fr.po
src/po/ga.po
src/po/it.po
src/po/ja.euc-jp.po
src/po/ja.po
src/po/ja.sjis.po
src/po/ko.UTF-8.po
src/po/ko.po
src/po/nb.po
src/po/nl.po
src/po/no.po
src/po/pl.UTF-8.po
src/po/pl.cp1250.po
src/po/pl.po
src/po/pt_BR.po
src/po/ru.cp1251.po
src/po/ru.po
src/po/sk.cp1250.po
src/po/sk.po
src/po/sr.po
src/po/sv.po
src/po/tr.po
src/po/uk.cp1251.po
src/po/uk.po
src/po/vi.po
src/po/zh_CN.UTF-8.po
src/po/zh_CN.cp936.po
src/po/zh_CN.po
src/po/zh_TW.UTF-8.po
src/po/zh_TW.po

index d6bde99a7d48a05b989a7773ee69ae6c11fc1e6c..f6b876df0584e374a771b1266db07ea65514f633 100644 (file)
@@ -1,7 +1,7 @@
 " zip.vim: Handles browsing zipfiles
 "            AUTOLOAD PORTION
 " Date:                Jan 07, 2020
-" Version:     30
+" Version:     31
 " Maintainer:  Charles E Campbell <NcampObell@SdrPchip.AorgM-NOSPAM>
 " License:     Vim License  (see vim's :help license)
 " Copyright:    Copyright (C) 2005-2019 Charles E. Campbell {{{1
@@ -20,7 +20,7 @@
 if &cp || exists("g:loaded_zip")
  finish
 endif
-let g:loaded_zip= "v30"
+let g:loaded_zip= "v31"
 if v:version < 702
  echohl WarningMsg
  echo "***warning*** this version of zip needs vim 7.2 or later"
@@ -65,7 +65,7 @@ endif
 " zip#Browse: {{{2
 fun! zip#Browse(zipfile)
 "  call Dfunc("zip#Browse(zipfile<".a:zipfile.">)")
-  " sanity check: ensure that the zipfile has "PK" as its first two letters
+  " sanity check: insure that the zipfile has "PK" as its first two letters
   "               (zipped files have a leading PK as a "magic cookie")
   if !filereadable(a:zipfile) || readfile(a:zipfile, "", 1)[0] !~ '^PK'
    exe "noswapfile noautocmd noswapfile e ".fnameescape(a:zipfile)
index f15cd96f0425e10d09694d03d20a03a69180c947..a5407046a0a5fcb29408e874f7f98bbd97f6da72 100644 (file)
@@ -1,4 +1,4 @@
-*autocmd.txt*   For Vim version 8.2.  Last change: 2020 Sep 25
+*autocmd.txt*   For Vim version 8.2.  Last change: 2020 Oct 26
 
 
                  VIM REFERENCE MANUAL    by Bram Moolenaar
@@ -278,7 +278,7 @@ Name                        triggered by ~
 |BufWinLeave|          before a buffer is removed from a window
 
 |BufUnload|            before unloading a buffer
-|BufHidden|            just after a buffer has become hidden
+|BufHidden|            just before a buffer becomes hidden
 |BufNew|               just after creating a new buffer
 
 |SwapExists|           detected an existing swap file
@@ -883,7 +883,7 @@ InsertEnter                 Just before starting Insert mode.  Also for
                                string.
                                                        *InsertLeavePre*
 InsertLeavePre                 Just before leaving Insert mode.  Also when
-                               using CTRL-O |i_CTRL-O|.  Be caseful not to
+                               using CTRL-O |i_CTRL-O|.  Be careful not to
                                change mode or use `:normal`, it will likely
                                cause trouble.
                                                        *InsertLeave*
index 18b0232dfac9826a62acdd223011ecf6059073eb..6e5cfc8356d71b905b840b3bc0d4893da97e833a 100644 (file)
@@ -1,4 +1,4 @@
-*channel.txt*      For Vim version 8.2.  Last change: 2020 Sep 03
+*channel.txt*      For Vim version 8.2.  Last change: 2020 Oct 17
 
 
                  VIM REFERENCE MANUAL    by Bram Moolenaar
@@ -965,6 +965,10 @@ job_status({job})                                  *job_status()* *E916*
                "fail", because a fork happens before the failure can be
                detected.
 
+               If in Vim9 script a variable is declared with type "job" but
+               never assigned to, passing that variable to job_status()
+               returns "fail".
+
                If an exit callback was set with the "exit_cb" option and the
                job is now detected to be "dead" the callback will be invoked.
 
@@ -1288,7 +1292,7 @@ prompt. >
          " Send the text to a shell with Enter appended.
          call ch_sendraw(g:shell_job, a:text .. "\n")
        endfunc
-               
+
        " Function handling output from the shell: Added above the prompt.
        func GotOutput(channel, msg)
          call append(line("$") - 1, "- " . a:msg)
index 9b9adf65a5c9c9a712088717f3ccd38de68185ed..ab2219de858cf1ff400cc6e9dc262c05d00b83d3 100644 (file)
@@ -1,4 +1,4 @@
-*editing.txt*   For Vim version 8.2.  Last change: 2020 Aug 17
+*editing.txt*   For Vim version 8.2.  Last change: 2020 Oct 23
 
 
                  VIM REFERENCE MANUAL    by Bram Moolenaar
@@ -73,10 +73,14 @@ g CTRL-G            Prints the current position of the cursor in five
                        ways: Column, Line, Word, Character and Byte.  If the
                        number of Characters and Bytes is the same then the
                        Character position is omitted.
+
                        If there are characters in the line that take more
                        than one position on the screen (<Tab> or special
-                       character), both the "real" column and the screen
-                       column are shown, separated with a dash.
+                       character), or characters using more than one byte per
+                       column (characters above 0x7F when 'encoding' is
+                       utf-8), both the byte column and the screen column are
+                       shown, separated by a dash.
+
                        Also see the 'ruler' option and the |wordcount()|
                        function.
 
index d58b02b467520f5e56f32b610ce1f497fcc05356..b757e5f2f2ff796bcdc6538b7be3d88e177a809d 100644 (file)
@@ -1,4 +1,4 @@
-*eval.txt*     For Vim version 8.2.  Last change: 2020 Oct 05
+*eval.txt*     For Vim version 8.2.  Last change: 2020 Oct 23
 
 
                  VIM REFERENCE MANUAL    by Bram Moolenaar
@@ -120,7 +120,7 @@ base, use |str2nr()|.
 
                                                *TRUE* *FALSE* *Boolean*
 For boolean operators Numbers are used.  Zero is FALSE, non-zero is TRUE.
-You can also use |v:false| and |v:true|.  In Vim9 script |false| and |true|. 
+You can also use |v:false| and |v:true|.  In Vim9 script |false| and |true|.
 When TRUE is returned from a function it is the Number one, FALSE is the
 number zero.
 
@@ -2746,7 +2746,7 @@ prop_type_change({name}, {props})
                                none    change an existing property type
 prop_type_delete({name} [, {props}])
                                none    delete a property type
-prop_type_get([{name} [, {props}]])
+prop_type_get({name} [, {props}])
                                Dict    get property type values
 prop_type_list([{props}])      List    get list of property types
 pum_getpos()                   Dict    position and size of pum if visible
@@ -3126,7 +3126,7 @@ appendbufline({expr}, {lnum}, {text})                     *appendbufline()*
                error message is given. Example: >
                        :let failed = appendbufline(13, 0, "# THE START")
 <
-<              Can also be used as a |method| after a List, the base is
+               Can also be used as a |method| after a List, the base is
                passed as the second argument: >
                        mylist->appendbufline(buf, lnum)
 
@@ -7972,8 +7972,8 @@ printf({fmt}, {expr1} ...)                                *printf()*
 
 
 prompt_getprompt({buf})                                        *prompt_getprompt()*
-               Returns the effective prompt text for buffer {buf}. {buf} can
-               be a buffer name or number. |prompt-buffer|.
+               Returns the effective prompt text for buffer {buf}.  {buf} can
+               be a buffer name or number.  See |prompt-buffer|.
 
                If the buffer doesn't exist or isn't a prompt buffer, an empty
                string is returned.
@@ -10709,8 +10709,8 @@ terminalprops()                                         *terminalprops()*
                detected from the response to |t_RV| request.  See
                |v:termresponse| for the response itself.  If |v:termresponse|
                is empty most values here will be 'u' for unknown.
-                  cursor_style         wether sending |t_RS| works  **
-                  cursor_blink_mode    wether sending |t_RC| works  **
+                  cursor_style         whether sending |t_RS| works  **
+                  cursor_blink_mode    whether sending |t_RC| works  **
                   underline_rgb        whether |t_8u| works **
                   mouse                mouse type supported
 
@@ -11366,7 +11366,8 @@ winsaveview()   Returns a |Dictionary| that contains information to restore
                        curswant        column for vertical movement
                        topline         first line in the window
                        topfill         filler lines, only in diff mode
-                       leftcol         first column displayed
+                       leftcol         first column displayed; only used when
+                                       'wrap' is off
                        skipcol         columns skipped
                Note that no option values are saved.
 
@@ -12140,8 +12141,9 @@ be used to pass settings to the autoload script before it's loaded: >
 
 Note that when you make a mistake and call a function that is supposed to be
 defined in an autoload script, but the script doesn't actually define the
-function, the script will be sourced every time you try to call the function.
-And you will get an error message every time.
+function, you will get an error message for the missing function.  If you fix
+the autoload script it won't be automatically loaded again.  Either restart
+Vim or manually source the script.
 
 Also note that if you have two script files, and one calls a function in the
 other and vice versa, before the used function is defined, it won't work.
index 6420856a67b6f352e85915dd8ee32b4e7e84e058..f0de21a91b36c3db387f2c203694093245fad499 100644 (file)
@@ -1,4 +1,4 @@
-*if_mzsch.txt*  For Vim version 8.2.  Last change: 2019 Dec 07
+*if_mzsch.txt*  For Vim version 8.2.  Last change: 2020 Oct 14
 
 
                  VIM REFERENCE MANUAL    by Sergey Khorev
@@ -43,7 +43,7 @@ To speed up the process, you might also want to use --disable-gracket and
 {script}
 {endmarker}
                        Execute inlined MzScheme script {script}.
-                       Note: This command doesn't work if the MzScheme
+                       Note: This command doesn't work when the MzScheme
                        feature wasn't compiled in.  To avoid errors, see
                        |script-here|.
 
index b202a939a8dd5a786c3b9823f9033d96ac2e512e..d70b3e601229819026464876d5fdfd13d874ae72 100644 (file)
@@ -1,4 +1,4 @@
-*insert.txt*    For Vim version 8.2.  Last change: 2020 Sep 19
+*insert.txt*    For Vim version 8.2.  Last change: 2020 Oct 16
 
 
                  VIM REFERENCE MANUAL    by Bram Moolenaar
@@ -312,6 +312,7 @@ If you enter a value of 10, it will end up in the file as a 0.  The 10 is a
 the buffer to a file, the <NL> character is translated into <Nul>.  The <NL>
 character is written at the end of each line.  Thus if you want to insert a
 <NL> character in a file you will have to make a line break.
+Also see 'fileformat'.
 
                                                *i_CTRL-X* *insert_expand*
 CTRL-X enters a sub-mode where several commands can be used.  Most of these
index 38282e7825843d272a6bf75d39130c3fac5025a3..d6215a4c6163e3f65ce92dac9081ba0e4f585154 100644 (file)
@@ -1,4 +1,4 @@
-*motion.txt*    For Vim version 8.2.  Last change: 2020 Aug 24
+*motion.txt*    For Vim version 8.2.  Last change: 2020 Oct 18
 
 
                  VIM REFERENCE MANUAL    by Bram Moolenaar
@@ -190,11 +190,14 @@ l         or                                      *l*
 
                                                        *^*
 ^                      To the first non-blank character of the line.
-                       |exclusive| motion.
+                       |exclusive| motion.  Any count is ignored.
 
                                                        *$* *<End>* *<kEnd>*
 $  or <End>            To the end of the line.  When a count is given also go
-                       [count - 1] lines downward. |inclusive| motion.
+                       [count - 1] lines downward, or as far is possible.
+                       |inclusive| motion.  If a count of 2 of larger is
+                       given and the cursor is on the last line, that is an
+                       error an the cursor doesn't move.
                        In Visual mode the cursor goes to just after the last
                        character in the line.
                        When 'virtualedit' is active, "$" may move the cursor
index d70df81549e7499a036b12d96a2c793becb204b9..2f9fe1eff2a8501a53a646d9c43324a772dfa0d4 100644 (file)
@@ -154,4 +154,4 @@ Copyright: Copyright (C) 2005-2015 Charles E Campbell        *zip-copyright*
    v1 Sep 15, 2005 * Initial release, had browsing, reading, and writing
 
 ==============================================================================
-vim:tw=78:ts=8:noet:ft=help:fdm=marker
+vim:tw=78:ts=8:ft=help:noet:norl:fdm=marker
index 0e28fdd335b56fd7debea5bcfa92126fd571c130..87baee6d8d9e3eca48e28ff07283c2caa7fa727b 100644 (file)
@@ -1,4 +1,4 @@
-*popup.txt*  For Vim version 8.2.  Last change: 2020 Sep 28
+*popup.txt*  For Vim version 8.2.  Last change: 2020 Oct 17
 
 
                  VIM REFERENCE MANUAL    by Bram Moolenaar
@@ -314,6 +314,7 @@ popup_filter_menu({id}, {key})                              *popup_filter_menu()*
                    <Space> <Enter>     accept current selection
                    x Esc CTRL-C        cancel the menu
                Other keys are ignored.
+               Always returns |v:true|.
 
                A match is set on that line to highlight it, see
                |popup_menu()|.
index 5a2ed2e8104e3a07445ae93f92680453d061703e..7512d0c29d34cdf10f5de124e2bfccb2b942cf3b 100644 (file)
@@ -1,4 +1,4 @@
-*tabpage.txt*   For Vim version 8.2.  Last change: 2020 Aug 10
+*tabpage.txt*   For Vim version 8.2.  Last change: 2020 Oct 14
 
 
                  VIM REFERENCE MANUAL    by Bram Moolenaar
@@ -195,8 +195,8 @@ gt                                  *i_CTRL-<PageDown>* *i_<C-PageDown>*
                    :+2tabnext  " go to the two next tab page
                    :1tabnext   " go to the first tab page
                    :$tabnext   " go to the last tab page
-                   :tabnext #  " go to the last accessed tab page
                    :tabnext $  " as above
+                   :tabnext #  " go to the last accessed tab page
                    :tabnext -  " go to the previous tab page
                    :tabnext -1 " as above
                    :tabnext +  " go to the next tab page
@@ -225,7 +225,7 @@ gT          Go to the previous tab page.  Wraps around from the first one
                                                        *:tabl* *:tablast*
 :tabl[ast]     Go to the last tab page.
 
-                                           *g<Tab>* *CTRL-W_g<Tab>* *<C-Tab>*
+                                       *g<Tab>* *CTRL-W_g<Tab>* *<C-Tab>*
 g<Tab>         Go to the last accessed tab page.
 
 Other commands:
@@ -259,7 +259,7 @@ REORDERING TAB PAGES:
                    :tabmove    " move the tab page to the last
                    :$tabmove   " as above
                    :tabmove $  " as above
-                   :tabmove #  " move the tab page after the last accessed
+                   :tabmove #  " move the tab page after the last accessed
                                " tab page
 
 :tabm[ove] +[N]
index 5fd41c5d9a5e80082a29e29ef18070bd50a6a7aa..7f07b9ff998964cd81c6935088400f84e6008175 100644 (file)
@@ -4378,7 +4378,6 @@ E538      options.txt     /*E538*
 E539   options.txt     /*E539*
 E54    pattern.txt     /*E54*
 E540   options.txt     /*E540*
-E541   options.txt     /*E541*
 E542   options.txt     /*E542*
 E543   options.txt     /*E543*
 E544   options.txt     /*E544*
@@ -4932,6 +4931,7 @@ InsertChange      autocmd.txt     /*InsertChange*
 InsertCharPre  autocmd.txt     /*InsertCharPre*
 InsertEnter    autocmd.txt     /*InsertEnter*
 InsertLeave    autocmd.txt     /*InsertLeave*
+InsertLeavePre autocmd.txt     /*InsertLeavePre*
 Integer        eval.txt        /*Integer*
 J      change.txt      /*J*
 Japanese       mbyte.txt       /*Japanese*
index ac6d12a699cc09abfcd046704d429ff75328ddbb..169520cfd70f4e883852cc4c23a1493f978dde64 100644 (file)
@@ -1,4 +1,4 @@
-*textprop.txt*  For Vim version 8.2.  Last change: 2020 Mar 05
+*textprop.txt*  For Vim version 8.2.  Last change: 2020 Oct 14
 
 
                  VIM REFERENCE MANUAL    by Bram Moolenaar
@@ -101,7 +101,7 @@ Manipulating text property types:
 prop_type_add({name}, {props})         define a new property type
 prop_type_change({name}, {props})      change an existing property type
 prop_type_delete({name} [, {props}])   delete a property type
-prop_type_get([{name} [, {props}]])    get property type values
+prop_type_get({name} [, {props}])      get property type values
 prop_type_list([{props}])              get list of property types
 
 
@@ -291,7 +291,7 @@ prop_type_delete({name} [, {props}])                        *prop_type_delete()*
                Can also be used as a |method|: >
                        GetPropName()->prop_type_delete()
 
-prop_type_get([{name} [, {props}]])                    *prop_type_get()*
+prop_type_get({name} [, {props}])                      *prop_type_get()*
                Returns the properties of property type {name}.  This is a
                dictionary with the same fields as was given to
                prop_type_add().
index 9795a0fa5730164f2f9a33271d0fc977e61804b5..48a7946c1c004fc9600dc8aac06a8704c7ca8605 100644 (file)
@@ -1,4 +1,4 @@
-*todo.txt*      For Vim version 8.2.  Last change: 2020 Oct 10
+*todo.txt*      For Vim version 8.2.  Last change: 2020 Oct 26
 
 
                  VIM REFERENCE MANUAL    by Bram Moolenaar
@@ -38,29 +38,13 @@ browser use: https://github.com/vim/vim/issues/1234
                                                        *known-bugs*
 -------------------- Known bugs and current work -----------------------
 
+Sign highlight in signcolumn disappears if there is line highlighting.
+
 Making everything work:
-- If a function is defined in a block it may need to keep the block-locals,
-  like a compiled closure.
-- Fix memory leaks in test_vim9_assign, remove "if 0"
-- Fix memory leaks in test_vim9_script
+- Test all  command modifiers.
+- Check many more builtin function arguments at compile time.
 - Closure arguments should be more strict, like any function call?
-- Remove v:disallow_let
-- Recognize call to assert_fails() and execute it in the function context?
-  Won't work if the command itself fails, not an expression failure:
-       assert_fails("unknown", "E99:")
-  Use try/catch is complicated:
-    let did_catch = false
-    try
-       unknown
-    catch
-       assert_caught('E99:')
-       did_catch = true
-    endtry
-    assert_true('did_catch')
-  Add a new command perhaps:
-    assertfail
-       unknown
-    endassertfail E99:.*unknown
+- Invoke user command in a :def function
 - Make map() give an error if the resulting type is wrong.
   Add mapnew() or mapcopy() to create a new List/Dict for the result, which
   can have a different value type.
@@ -124,12 +108,12 @@ Making everything work:
 - Make "++nr" work.
 - Make closures work:
   - Create closure in a loop.  Need to make a list of them.
+  - nested closure only uses one context, not all (#7150)
 - expandcmd() with `=expr` in filename uses legacy expression.
 - eval_expr() in ex_cexpr()
 - eval_expr() call in dbg_parsearg() and debuggy_find()
 - has() is compiled as a constant, but some checks are dynamic.
   Check for dynamic values, such as "gui_running".
-- Implement command modifiers, such as "silent". (#6530)
 New syntax and functionality:
 Improve error checking:
 - "echo Func()" is an error if Func() does not return anything.
@@ -302,6 +286,8 @@ with 'termguicolors'. #1740
 
 Patch for blockwise paste reporting changes: #6660.
 
+Missing filetype test for bashrc, PKGBUILD, etc.
+
 Add an option to not fetch terminal codes in xterm, to avoid flicker when t_Co
 changes.
 
@@ -351,8 +337,6 @@ work.
 Using "au!" after "filetype on" is a bit slow.  Can the matching of
 autocommands be made faster?  (#7056)
 
-Valgrind warns for uninitialized values in f_term_dumpwrite().
-
 Add the <=> (spaceship) operator and "cond ?< expr ?= expr ?> expr"
     replace this:
        let left = GetLeftFunc()
@@ -455,7 +439,6 @@ Patch to fix session file when using multiple tab pages. (Jason Franklin, 2019
 May 20)
 Also put :argadd commands at the start for all buffers, so that their order
 remains equal?  Then %argdel to clean it up.  Do try this with 'hidden' set.
-Also #4994: window-local options not always restored, related to using :badd.
 Also #5326: netrw buffers are not restored.
 
 Alternate file is not set in the session file.  Use setwintabvar("@#") ?
@@ -595,10 +578,6 @@ Patch to have text objects defined by arbitrary single characters. (Daniel
 Thau, 2013 Nov 20, 2014 Jan 29, 2014 Jan 31)
 Added tests (James McCoy, 2016 Aug 3, #958).  Still needs more work.
 
-":2resize +10" uses size of the current window, adds 10 and applies it to
-window 2.  User expects 10 to be added to size of window 2. (Daniel Steinberg,
-#5443)
-
 Would be nice to set tab-local values for 'diffexpr' and 'diffopt'.  Use
 t:diffexpr_option t:diffopt_option? (#4782)
 
@@ -3858,10 +3837,6 @@ Macintosh:
     on the status line (caused by 'winheight').  Select window on button up,
     instead of on button down.
 8   Dragging the status line doesn't scroll but redraw.
-9   Evaluating 'statusline' in build_stl_str_hl() does not properly check for
-    reaching the end of the available buffer.
-    Patch to dynamically allocate the buffer for % items. (Eric Arnold, 2006
-    May 14)
 8   When performing incremental search, should abort searching as soon as a
     character is typed.
 8   When the value of $MAKE contains a path, configure can't handle this.
index 542b101a2f833488ff805361e740803f59b753a2..b1c6fa76949146718ea3e2f6eae75923d4ae93f8 100644 (file)
@@ -1,4 +1,4 @@
-*undo.txt*      For Vim version 8.2.  Last change: 2019 Dec 07
+*undo.txt*      For Vim version 8.2.  Last change: 2020 Oct 18
 
 
                  VIM REFERENCE MANUAL    by Bram Moolenaar
@@ -392,7 +392,7 @@ back the text of three deletes ago with '"3P'.
                                                *redo-register*
 If you want to get back more than one part of deleted text, you can use a
 special feature of the repeat command ".".  It will increase the number of the
-register used.  So if you first do ""1P", the following "." will result in a
+register used.  So if you first do '"1P', the following "." will result in a
 '"2P'.  Repeating this will result in all numbered registers being inserted.
 
 Example:       If you deleted text with 'dd....' it can be restored with
index 430c365cc3b4cb81ddeef2bcc13daf636205c794..d26763107d52c30b4fec967bed5964414ec83f6b 100644 (file)
@@ -1,4 +1,4 @@
-*usr_11.txt*   For Vim version 8.2.  Last change: 2020 Jul 08
+*usr_11.txt*   For Vim version 8.2.  Last change: 2020 Oct 25
 
                     VIM USER MANUAL - by Bram Moolenaar
 
@@ -294,7 +294,7 @@ If you really don't want to see this message, you can add the 'A' flag to the
 'shortmess' option.  But it's very unusual that you need this.
 
 For remarks about encryption and the swap file, see |:recover-crypt|.
-For programatic access to the swap file, see |swapinfo()|.
+For programmatic access to the swap file, see |swapinfo()|.
 
 ==============================================================================
 *11.4* Further reading
index 1ad90f2bde5ee3e884eaabbe3f07d17256669b80..ef28e0840088b0db9b72e87c4275431decf402c0 100644 (file)
@@ -1,4 +1,4 @@
-*version7.txt*  For Vim version 8.2.  Last change: 2020 Aug 15
+*version7.txt*  For Vim version 8.2.  Last change: 2020 Oct 25
 
 
                  VIM REFERENCE MANUAL    by Bram Moolenaar
@@ -10260,7 +10260,7 @@ Commands:
        Brabandt)
 
 Other:
-       Lua interface now also uses userdata binded to Vim structures. (Taro
+       Lua interface now also uses userdata bound to Vim structures. (Taro
        Muraoka, Luis Carvalho)
 
        glob() and autocommand patterns used to work with the undocumented
index 431b9cd47e62a68cbdf8132dba4684626e34fb9a..8f38d9b478f28fdff7151106da4e3bbd4cbbbfe1 100644 (file)
@@ -1,4 +1,4 @@
-*version8.txt*  For Vim version 8.2.  Last change: 2020 Aug 15
+*version8.txt*  For Vim version 8.2.  Last change: 2020 Oct 25
 
 
                  VIM REFERENCE MANUAL    by Bram Moolenaar
@@ -47698,7 +47698,7 @@ Files:      src/eval.c, src/testdir/test_vim9_expr.vim
 
 Patch 8.2.1064
 Problem:    Vim9: no line break allowed before comparators.
-Solution:   Check for comperator after line break.
+Solution:   Check for comparator after line break.
 Files:      src/eval.c, src/testdir/test_vim9_expr.vim
 
 Patch 8.2.1065
index fdbcefcd964f8fcb80c2f56cbdb2658bff6bd3d3..85513739b25837db36dff135d0acbfd10805ecbc 100644 (file)
@@ -1,4 +1,4 @@
-*vim9.txt*     For Vim version 8.2.  Last change: 2020 Oct 05
+*vim9.txt*     For Vim version 8.2.  Last change: 2020 Oct 17
 
 
                  VIM REFERENCE MANUAL    by Bram Moolenaar
@@ -176,8 +176,8 @@ However, it is recommended to always use "g:" to refer to a global function
 for clarity.
 
 In all cases the function must be defined before used.  That is when it is
-called, when `:defcompile` causes the it to be compiled, or when code that
-calls it is being compiled (to figure out the return type).
+called, when `:defcompile` causes it to be compiled, or when code that calls
+it is being compiled (to figure out the return type).
 
 The result is that functions and variables without a namespace can usually be
 found in the script, either defined there or imported.  Global functions and
@@ -901,7 +901,7 @@ The script name after `import` can be:
   location of the script file itself.  This is useful to split up a large
   plugin into several files.
 - An absolute path, starting with "/" on Unix or "D:/" on MS-Windows.  This
-  will be rarely used.
+  will rarely be used.
 - A path not being relative or absolute.  This will be found in the
   "import" subdirectories of 'runtimepath' entries.  The name will usually be
   longer and unique, to avoid loading the wrong file.
@@ -1160,8 +1160,8 @@ Some details are unexpected and can be improved.  For example a boolean
 condition would accept a string, convert it to a number and check if the
 number is non-zero.  This is unexpected and often leads to mistakes, since
 text not starting with a number would be converted to zero, which is
-considered false.  Thus a string would not give an error and be considered
-false if it doesn't start with a number.  That is confusing.
+considered false.  Thus using a string for a condition would often not give an
+error and be considered false.  That is confusing.
 
 In Vim9 type checking is more strict to avoid mistakes.  Where a condition is
 used, e.g. with the `:if` command and the `||` operator, only boolean-like
@@ -1169,7 +1169,7 @@ values are accepted:
        true:  `true`, `v:true`, `1`, `0 < 9`
        false: `false`, `v:false`, `0`, `0 > 9`
 Note that the number zero is false and the number one is true.  This is more
-persmissive than most other languages.  It was done because many builtin
+permissive than most other languages.  It was done because many builtin
 functions return these values.
 
 If you have any type of value and want to use it as a boolean, use the `!!`
index c3fb19e74199c9d6e28e259388f3e9024da2c0cf..b56f6125c8cbba8ebd153b5a3d0db726e100754b 100644 (file)
@@ -1,7 +1,7 @@
 " Vim support file to detect file types
 "
 " Maintainer:  Bram Moolenaar <Bram@vim.org>
-" Last Change: 2020 Sep 30
+" Last Change: 2020 Oct 24
 
 " Listen very carefully, I will say this only once
 if exists("did_load_filetypes")
@@ -1506,9 +1506,10 @@ au BufNewFile,BufRead *.decl,*.dcl,*.dec
 au BufNewFile,BufRead catalog                  setf catalog
 
 " Shell scripts (sh, ksh, bash, bash2, csh); Allow .profile_foo etc.
-" Gentoo ebuilds and Arch Linux PKGBUILDs are actually bash scripts
+" Gentoo ebuilds, Arch Linux PKGBUILDs and Alpine Linux APKBUILDs are actually
+" bash scripts.
 " NOTE: Patterns ending in a star are further down, these have lower priority.
-au BufNewFile,BufRead .bashrc,bashrc,bash.bashrc,.bash[_-]profile,.bash[_-]logout,.bash[_-]aliases,bash-fc[-.],*.bash,*/{,.}bash[_-]completion{,.d,.sh}{,/*},*.ebuild,*.eclass,PKGBUILD call dist#ft#SetFileTypeSH("bash")
+au BufNewFile,BufRead .bashrc,bashrc,bash.bashrc,.bash[_-]profile,.bash[_-]logout,.bash[_-]aliases,bash-fc[-.],*.bash,*/{,.}bash[_-]completion{,.d,.sh}{,/*},*.ebuild,*.eclass,PKGBUILD,APKBUILD call dist#ft#SetFileTypeSH("bash")
 au BufNewFile,BufRead .kshrc,*.ksh call dist#ft#SetFileTypeSH("ksh")
 au BufNewFile,BufRead */etc/profile,.profile,*.sh,*.env call dist#ft#SetFileTypeSH(getline(1))
 
@@ -2163,7 +2164,7 @@ au BufNewFile,BufRead .reminders*         call s:StarSetf('remind')
 au BufNewFile,BufRead sgml.catalog*            call s:StarSetf('catalog')
 
 " Shell scripts ending in a star
-au BufNewFile,BufRead .bashrc*,.bash[_-]profile*,.bash[_-]logout*,.bash[_-]aliases*,bash-fc[-.]*,,PKGBUILD* call dist#ft#SetFileTypeSH("bash")
+au BufNewFile,BufRead .bashrc*,.bash[_-]profile*,.bash[_-]logout*,.bash[_-]aliases*,bash-fc[-.]*,PKGBUILD*,APKBUILD* call dist#ft#SetFileTypeSH("bash")
 au BufNewFile,BufRead .kshrc* call dist#ft#SetFileTypeSH("ksh")
 au BufNewFile,BufRead .profile* call dist#ft#SetFileTypeSH(getline(1))
 
index 2bbc345b436961a56f5f01f4bfb96a24c10a9d1f..ece11d724988f2156b1e14d91a04d984d08b8503 100644 (file)
@@ -1,7 +1,7 @@
 " Vim ftplugin file
 " Language:     Erlang
-" Author:       Oscar Hellström <oscar@oscarh.net>
-" Contributors: Ricardo Catalinas Jiménez <jimenezrick@gmail.com>
+" Author:       Oscar Hellström <oscar@oscarh.net>
+" Contributors: Ricardo Catalinas Jiménez <jimenezrick@gmail.com>
 "               Eduardo Lopez (http://github.com/tapichu)
 " License:      Vim license
 " Version:      2012/01/25
index bfa87030827236fdee1d9ef2f5718b42c120972f..168bc38eb36fff5926de0d7b3a71bd312e89e0a5 100644 (file)
@@ -1,7 +1,7 @@
 " Vim filetype plugin file
 " Language:    Make
 " Maintainer:  Bram Moolenaar <Bram@vim.org>
-" Last Change: 2019 Apr 02
+" Last Change: 2020 Oct 16
 
 " Only do this when not done yet for this buffer
 if exists("b:did_ftplugin")
@@ -9,10 +9,10 @@ if exists("b:did_ftplugin")
 endif
 let b:did_ftplugin = 1
 
-let b:undo_ftplugin = "setl et< sts< fo< com< cms< inc<"
+let b:undo_ftplugin = "setl et< sts< sw< fo< com< cms< inc<"
 
 " Make sure a hard tab is used, required for most make programs
-setlocal noexpandtab softtabstop=0
+setlocal noexpandtab softtabstop=0 shiftwidth=0
 
 " Set 'formatoptions' to break comment lines but not other lines,
 " and insert the comment leader when hitting <CR> or using "o".
index 5f8a639f0dde9b3cd290fe5a45f19bfb69fd9006..e62637ae0cedec8c9f54d882aaf50627c1aadab1 100644 (file)
@@ -2,7 +2,7 @@
 " Language:    man
 " Maintainer:  Jason Franklin <vim@justemail.net>
 " Maintainer:  SungHyun Nam <goweol@gmail.com>
-" Last Change:         2020 Jun 01
+" Last Change:         2020 Oct 09
 
 " To make the ":Man" command available before editing a manual page, source
 " this script from your startup vimrc file.
@@ -76,7 +76,7 @@ catch /E145:/
   " Ignore the error in restricted mode
 endtry
 
-func <SID>PreGetPage(cnt)
+func s:PreGetPage(cnt)
   if a:cnt == 0
     let old_isk = &iskeyword
     if &ft == 'man'
@@ -99,24 +99,27 @@ func <SID>PreGetPage(cnt)
   call s:GetPage('', sect, page)
 endfunc
 
-func <SID>GetCmdArg(sect, page)
-  if a:sect == ''
-    return a:page
+func s:GetCmdArg(sect, page)
+
+  if empty(a:sect)
+    return shellescape(a:page)
   endif
-  return s:man_sect_arg.' '.a:sect.' '.a:page
+
+  return s:man_sect_arg . ' ' . shellescape(a:sect) . ' ' . shellescape(a:page)
 endfunc
 
-func <SID>FindPage(sect, page)
-  let where = system("man ".s:man_find_arg.' '.s:GetCmdArg(a:sect, a:page))
-  if where !~ "^/"
-    if matchstr(where, " [^ ]*$") !~ "^ /"
-      return 0
-    endif
+func s:FindPage(sect, page)
+  let l:cmd = printf('man %s %s', s:man_find_arg, s:GetCmdArg(a:sect, a:page))
+  call system(l:cmd)
+
+  if v:shell_error
+    return 0
   endif
+
   return 1
 endfunc
 
-func <SID>GetPage(cmdmods, ...)
+func s:GetPage(cmdmods, ...)
   if a:0 >= 2
     let sect = a:1
     let page = a:2
@@ -226,7 +229,7 @@ func <SID>GetPage(cmdmods, ...)
   setl noma
 endfunc
 
-func <SID>PopPage()
+func s:PopPage()
   if s:man_tag_depth > 0
     let s:man_tag_depth = s:man_tag_depth - 1
     exec "let s:man_tag_buf=s:man_tag_buf_".s:man_tag_depth
index 909e141cc6fc83dd19704a0e7ad20af4a572f60a..8b4d5b0d48e849fa622c4df4a5aa5d13d2a11df9 100644 (file)
@@ -1,6 +1,6 @@
 " Vim filetype plugin file
 " Language:     RPL/2
-" Maintainer:   Joël BERTRAND <rpl2@free.fr>
+" Maintainer:   Joël BERTRAND <rpl2@free.fr>
 " Last Change: 2012 Mar 07
 " Version:             0.1
 
index fab258ed2b9e56e28b335303fa241be4a4b25439..8577c4d2743e76c17fc4c3672bd8e9c714c37608 100644 (file)
@@ -2,7 +2,7 @@
 " Language:    RPL/2
 " Version:     0.2
 " Last Change: 2017 Jun 13
-" Maintainer:  BERTRAND Joël <rpl2@free.fr>
+" Maintainer:  BERTRAND Joël <rpl2@free.fr>
 
 " Only load this indent file when no other was loaded.
 if exists("b:did_indent")
index 13082c86925b29dfa192d48b0b0094317111c01f..e722a0994c763e738527ed8c2972c0daff3a33b1 100644 (file)
@@ -1,5 +1,5 @@
 "Description: Indent scheme for the tilde weblanguage
-"Author: Tobias Rundström <tobi@tobi.nu>
+"Author: Tobias Rundström <tobi@tobi.nu>
 "URL: http://tilde.tildesoftware.net
 "Last Change: May  8 09:15:09 CEST 2002
 
index 82bfa1ad3a021d689a5953c2730d67d791b4f8c9..b48a58f3e00ee67c64e102a9ffef4c5a66d93a9b 100644 (file)
@@ -1,7 +1,7 @@
 " These commands create the option window.
 "
 " Maintainer:  Bram Moolenaar <Bram@vim.org>
-" Last Change: 2020 Sep 10
+" Last Change: 2020 Oct 23
 
 " If there already is an option window, jump to that one.
 let buf = bufnr('option-window')
@@ -617,7 +617,7 @@ call <SID>AddOption("mousemodel", gettext("\"extend\", \"popup\" or \"popup_setp
 call <SID>OptionG("mousem", &mousem)
 call <SID>AddOption("mousetime", gettext("maximum time in msec to recognize a double-click"))
 call append("$", " \tset mouset=" . &mouset)
-call <SID>AddOption("ttymouse", gettext("\"xterm\", \"xterm2\", \"dec\" or \"netterm\"; type of mouse"))
+call <SID>AddOption("ttymouse", gettext("\"xterm\", \"xterm2\", \"sgr\", etc.; type of mouse"))
 call <SID>OptionG("ttym", &ttym)
 if has("mouseshape")
   call <SID>AddOption("mouseshape", gettext("what the mouse pointer looks like in different modes"))
@@ -689,10 +689,6 @@ if has("gui")
       call append("$", " \tset bexpr=" . &bexpr)
     endif
   endif
-  if exists("+macatsui")
-    call <SID>AddOption("macatsui", gettext("use ATSUI text drawing; disable to avoid display problems"))
-    call <SID>OptionG("macatsui", &macatsui)
-  endif
 endif
 
 if has("printer")
@@ -791,7 +787,7 @@ call <SID>BinOptionL("mod")
 call <SID>AddOption("readonly", gettext("buffer is not to be written"))
 call append("$", "\t" .. s:local_to_buffer)
 call <SID>BinOptionL("ro")
-call <SID>AddOption("modifiable", gettext("changes to the text are not possible"))
+call <SID>AddOption("modifiable", gettext("changes to the text are possible"))
 call append("$", "\t" .. s:local_to_buffer)
 call <SID>BinOptionL("ma")
 call <SID>AddOption("textwidth", gettext("line length above which to break a line"))
@@ -852,7 +848,7 @@ if has("digraphs")
 endif
 call <SID>AddOption("tildeop", gettext("the \"~\" command behaves like an operator"))
 call <SID>BinOptionG("top", &top)
-call <SID>AddOption("operatorfunc", gettext("function called for the\"g@\"  operator"))
+call <SID>AddOption("operatorfunc", gettext("function called for the \"g@\"  operator"))
 call <SID>OptionG("opfunc", &opfunc)
 call <SID>AddOption("showmatch", gettext("when inserting a bracket, briefly jump to its match"))
 call <SID>BinOptionG("sm", &sm)
@@ -863,7 +859,7 @@ call append("$", "\t" .. s:local_to_buffer)
 call <SID>OptionL("mps")
 call <SID>AddOption("joinspaces", gettext("use two spaces after '.' when joining a line"))
 call <SID>BinOptionG("js", &js)
-call <SID>AddOption("nrformats", gettext("\"alpha\", \"octal\" and/or \"hex\"; number formats recognized for\nCTRL-A and CTRL-X commands"))
+call <SID>AddOption("nrformats", gettext("\"alpha\", \"octal\", \"hex\", \"bin\" and/or \"unsigned\"; number formats\nrecognized for CTRL-A and CTRL-X commands"))
 call append("$", "\t" .. s:local_to_buffer)
 call <SID>OptionL("nf")
 
@@ -938,7 +934,7 @@ endif
 
 if has("folding")
   call <SID>Header(gettext("folding"))
-  call <SID>AddOption("foldenable", gettext("set to display all folds open"))
+  call <SID>AddOption("foldenable", gettext("unset to display all folds open"))
   call append("$", "\t" .. s:local_to_window)
   call <SID>BinOptionL("fen")
   call <SID>AddOption("foldlevel", gettext("folds with a level higher than this number will be closed"))
@@ -961,7 +957,7 @@ if has("folding")
   call <SID>OptionL("fml")
   call <SID>AddOption("commentstring", gettext("template for comments; used to put the marker in"))
   call <SID>OptionL("cms")
-  call <SID>AddOption("foldmethod", gettext("folding type: \"manual\", \"indent\", \"expr\", \"marker\" or \"syntax\""))
+  call <SID>AddOption("foldmethod", gettext("folding type: \"manual\", \"indent\", \"expr\", \"marker\",\n\"syntax\" or \"diff\""))
   call append("$", "\t" .. s:local_to_window)
   call <SID>OptionL("fdm")
   call <SID>AddOption("foldexpr", gettext("expression used when 'foldmethod' is \"expr\""))
@@ -1069,7 +1065,7 @@ call <SID>BinOptionG("fs", &fs)
 call <SID>AddOption("shortname", gettext("use 8.3 file names"))
 call append("$", "\t" .. s:local_to_buffer)
 call <SID>BinOptionL("sn")
-call <SID>AddOption("cryptmethod", gettext("encryption method for file writing: zip or blowfish"))
+call <SID>AddOption("cryptmethod", gettext("encryption method for file writing: zip, blowfish or blowfish2"))
 call append("$", "\t" .. s:local_to_buffer)
 call <SID>OptionL("cm")
 
@@ -1093,7 +1089,7 @@ call append("$", " \tset mmt=" . &mmt)
 
 
 call <SID>Header(gettext("command line editing"))
-call <SID>AddOption("history", gettext("how many command lines are remembered "))
+call <SID>AddOption("history", gettext("how many command lines are remembered"))
 call append("$", " \tset hi=" . &hi)
 call <SID>AddOption("wildchar", gettext("key that triggers command-line expansion"))
 call append("$", " \tset wc=" . &wc)
@@ -1187,19 +1183,12 @@ if has("quickfix")
 endif
 
 
-if has("win32") || has("osfiletype")
+if has("win32")
   call <SID>Header(gettext("system specific"))
-  if has("osfiletype")
-    call <SID>AddOption("osfiletype", gettext("OS-specific information about the type of file"))
-    call append("$", "\t" .. s:local_to_buffer)
-    call <SID>OptionL("oft")
-  endif
-  if has("win32")
-    call <SID>AddOption("shellslash", gettext("use forward slashes in file names; for Unix-like shells"))
-    call <SID>BinOptionG("ssl", &ssl)
-    call <SID>AddOption("completeslash", gettext("specifies slash/backslash used for completion"))
-    call <SID>OptionG("csl", &csl)
-  endif
+  call <SID>AddOption("shellslash", gettext("use forward slashes in file names; for Unix-like shells"))
+  call <SID>BinOptionG("ssl", &ssl)
+  call <SID>AddOption("completeslash", gettext("specifies slash/backslash used for completion"))
+  call <SID>OptionG("csl", &csl)
 endif
 
 
@@ -1236,12 +1225,6 @@ if has("rightleft")
   call <SID>AddOption("hkmapp", gettext("use phonetic Hebrew keyboard mapping"))
   call <SID>BinOptionG("hkp", &hkp)
 endif
-if has("farsi")
-  call <SID>AddOption("altkeymap", gettext("use Farsi as the second language when 'revins' is set"))
-  call <SID>BinOptionG("akm", &akm)
-  call <SID>AddOption("fkmap", gettext("use Farsi keyboard mapping"))
-  call <SID>BinOptionG("fk", &fk)
-endif
 if has("arabic")
   call <SID>AddOption("arabic", gettext("prepare for editing Arabic text"))
   call append("$", "\t" .. s:local_to_window)
@@ -1310,7 +1293,7 @@ call <SID>BinOptionG("emo", &emo)
 
 
 call <SID>Header(gettext("various"))
-call <SID>AddOption("virtualedit", gettext("when to use virtual editing: \"block\", \"insert\" and/or \"all\""))
+call <SID>AddOption("virtualedit", gettext("when to use virtual editing: \"block\", \"insert\", \"all\"\nand/or \"onemore\""))
 call <SID>OptionG("ve", &ve)
 call <SID>AddOption("eventignore", gettext("list of autocommand events which are to be ignored"))
 call <SID>OptionG("ei", &ei)
@@ -1350,7 +1333,7 @@ if has("quickfix")
   call <SID>AddOption("bufhidden", gettext("what happens with a buffer when it's no longer in a window"))
   call append("$", "\t" .. s:local_to_buffer)
   call <SID>OptionL("bh")
-  call <SID>AddOption("buftype", gettext("\"\", \"nofile\", \"nowrite\" or \"quickfix\": type of buffer"))
+  call <SID>AddOption("buftype", gettext("empty, \"nofile\", \"nowrite\", \"quickfix\", etc.: type of buffer"))
   call append("$", "\t" .. s:local_to_buffer)
   call <SID>OptionL("bt")
 endif
index 832dcf584b71080461d66838c637ea359280fbce..c42b069f571b5177b8a4aa24195addd5cad9573e 100644 (file)
@@ -2,7 +2,7 @@
 "
 " Author: Bram Moolenaar
 " Copyright: Vim license applies, see ":help license"
-" Last Change: 2020 Aug 31
+" Last Change: 2020 Oct 25
 "
 " WORK IN PROGRESS - Only the basics work
 " Note: On MS-Windows you need a recent version of gdb.  The one included with
@@ -119,7 +119,11 @@ func s:StartDebug_internal(dict)
   " call ch_logfile('debuglog', 'w')
 
   let s:sourcewin = win_getid(winnr())
-  let s:startsigncolumn = &signcolumn
+
+  " Remember the old value of 'signcolumn' for each buffer that it's set in, so
+  " that we can restore the value for all buffers.
+  let b:save_signcolumn = &signcolumn
+  let s:signcolumn_buflist = [bufnr()]
 
   let s:save_columns = 0
   let s:allleft = 0
@@ -556,8 +560,20 @@ func s:EndDebugCommon()
     exe 'bwipe! ' . s:ptybuf
   endif
 
+  " Restore 'signcolumn' in all buffers for which it was set.
   call win_gotoid(s:sourcewin)
-  let &signcolumn = s:startsigncolumn
+  let was_buf = bufnr()
+  for bufnr in s:signcolumn_buflist
+    if bufexists(bufnr)
+      exe bufnr .. "buf"
+      if exists('b:save_signcolumn')
+       let &signcolumn = b:save_signcolumn
+       unlet b:save_signcolumn
+      endif
+    endif
+  endfor
+  exe was_buf .. "buf"
+
   call s:DeleteCommands()
 
   call win_gotoid(curwinid)
@@ -938,6 +954,10 @@ func s:HandleCursor(msg)
       exe lnum
       exe 'sign unplace ' . s:pc_id
       exe 'sign place ' . s:pc_id . ' line=' . lnum . ' name=debugPC priority=110 file=' . fname
+      if !exists('b:save_signcolumn')
+       let b:save_signcolumn = &signcolumn
+       call add(s:signcolumn_buflist, bufnr())
+      endif
       setlocal signcolumn=yes
     endif
   elseif !s:stopped || fname != ''
index 4b90d3e43f35350413b2172d89b413e814b6a99c..b9e334fb9882a94d63d87a45cf47c7bcd92af9cf 100644 (file)
 if &cp || exists("g:loaded_zipPlugin")
  finish
 endif
-let g:loaded_zipPlugin = "v30"
+let g:loaded_zipPlugin = "v31"
 let s:keepcpo          = &cpo
 set cpo&vim
 
 " ---------------------------------------------------------------------
 " Options: {{{1
 if !exists("g:zipPlugin_ext")
- let g:zipPlugin_ext='*.apk,*.celzip,*.crtx,*.docm,*.docx,*.dotm,*.dotx,*.ear,*.epub,*.gcsx,*.glox,*.gqsx,*.ja,*.jar,*.kmz,*.odb,*.odc,*.odf,*.odg,*.odi,*.odm,*.odp,*.ods,*.odt,*.otc,*.otf,*.otg,*.oth,*.oti,*.otp,*.ots,*.ott,*.oxt,*.potm,*.potx,*.ppam,*.ppsm,*.ppsx,*.pptm,*.pptx,*.sldx,*.thmx,*.vdw,*.war,*.wsz,*.xap,*.xlam,*.xlam,*.xlsb,*.xlsm,*.xlsx,*.xltm,*.xltx,*.xpi,*.zip'
+ let g:zipPlugin_ext='*.aar,*.apk,*.celzip,*.crtx,*.docm,*.docx,*.dotm,*.dotx,*.ear,*.epub,*.gcsx,*.glox,*.gqsx,*.ja,*.jar,*.kmz,*.odb,*.odc,*.odf,*.odg,*.odi,*.odm,*.odp,*.ods,*.odt,*.otc,*.otf,*.otg,*.oth,*.oti,*.otp,*.ots,*.ott,*.oxt,*.potm,*.potx,*.ppam,*.ppsm,*.ppsx,*.pptm,*.pptx,*.sldx,*.thmx,*.vdw,*.war,*.wsz,*.xap,*.xlam,*.xlam,*.xlsb,*.xlsm,*.xlsx,*.xltm,*.xltx,*.xpi,*.zip'
 endif
 
 " ---------------------------------------------------------------------
index e695dbc79ae7abe34afd774969e3081be058d0ee..c8e5a61bd1c5ef54fcfa26c9e5e18202905570f4 100644 (file)
@@ -1,6 +1,6 @@
 " Vim syntax file
 " Language:    ELF
-" Maintainer:  Christian V. J. Brüssow <cvjb@cvjb.de>
+" Maintainer:  Christian V. J. Brüssow <cvjb@cvjb.de>
 " Last Change: Son 22 Jun 2003 20:43:14 CEST
 " Filenames:   *.ab,*.am
 " URL:        http://www.cvjb.de/comp/vim/elf.vim
index a1912461e60e8551de08fddf0f93404da8bd27b2..9b39a7fd7d21b4af15e8e34434c35f294e4956d4 100644 (file)
@@ -1,7 +1,7 @@
 " Vim syntax file
 " Language:    FORTH
 " Current Maintainer:  Johan Kotlinski <kotlinski@gmail.com>
-" Previous Maintainer:  Christian V. J. Brüssow <cvjb@cvjb.de>
+" Previous Maintainer:  Christian V. J. Brüssow <cvjb@cvjb.de>
 " Last Change: 2018-03-29
 " Filenames:   *.fs,*.ft
 " URL:        https://github.com/jkotlinski/forth.vim
index 7ff80c11a801aeda0b4100026cb71ee7058c08f5..8ebd120226efe629f5f568610c5ae2f373238153 100644 (file)
@@ -8,10 +8,10 @@
 "  older Fortran 77 syntax file by Mario Eusebio and Preben Guldberg.
 "  Since then, useful suggestions and contributions have been made, in order, by:
 "  Andrej Panjkov, Bram Moolenaar, Thomas Olsen, Michael Sternberg, Christian Reile,
-"  Walter Dieudonné, Alexander Wagner, Roman Bertle, Charles Rendleman,
+"  Walter Dieudonné, Alexander Wagner, Roman Bertle, Charles Rendleman,
 "  Andrew Griffiths, Joe Krahn, Hendrik Merx, Matt Thompson, Jan Hermann,
-"  Stefano Zaghi, Vishnu V. Krishnan, Judicaël Grasset, Takuma Yoshida,
-"  Eisuke Kawashima, and André Chalella.`
+"  Stefano Zaghi, Vishnu V. Krishnan, Judicaël Grasset, Takuma Yoshida,
+"  Eisuke Kawashima, and André Chalella.`
 
 if exists("b:current_syntax")
   finish
index d4dc0cc4f7c8ca8bd523b588345b8633448a0d61..2cc7ccf704b0d1949fa90668cada8449c14ea7c0 100644 (file)
@@ -1,6 +1,6 @@
 " VIM syntax file
 " Language:    groff
-" Maintainer:  Alejandro López-Valencia <dradul@yahoo.com>
+" Maintainer:  Alejandro López-Valencia <dradul@yahoo.com>
 " URL:         http://dradul.tripod.com/vim
 " Last Change: 2003-05-08-12:41:13 GMT-5.
 
index 1a912c1d051fe7454b30baeed10a391c97ff0598..5d7685cde17a6dd2491d5762d002e40c00e77250 100644 (file)
@@ -1,6 +1,6 @@
 " Vim syntax file
 " Language:    initng .i files
-" Maintainer:  Elan Ruusamäe <glen@pld-linux.org>
+" Maintainer:  Elan Ruusamäe <glen@pld-linux.org>
 " URL:         http://glen.alkohol.ee/pld/initng/
 " License:     GPL v2
 " Version:     0.13
index bd28c732b1a4e45245725fdc3d2cc3ff1dbf8dcd..e41de5db5a3279ea8eaef254d232da16f22f7303 100644 (file)
@@ -1,7 +1,7 @@
 " Vim syntax file
 " Language:             Inno Setup File (iss file) and My InnoSetup extension
 " Maintainer:           Jason Mills (jmills@cs.mun.ca)
-" Previous Maintainer:  Dominique Stéphan (dominique@mggen.com)
+" Previous Maintainer:  Dominique Stéphan (dominique@mggen.com)
 " Last Change:          2019 Sep 27
 "
 " Todo:
index 30c87fce5147f4d3b44851425bc61c47a0ab90a0..b26a7bcc46d901a8b7eecbb310147743948c4c2a 100644 (file)
@@ -1,6 +1,6 @@
 " Vim syntax file
 " Language:    Lout
-" Maintainer:  Christian V. J. Brüssow <cvjb@cvjb.de>
+" Maintainer:  Christian V. J. Brüssow <cvjb@cvjb.de>
 " Last Change: So 12 Feb 2012 15:15:03 CET
 " Filenames:   *.lout,*.lt
 " URL:         http://www.cvjb.de/comp/vim/lout.vim
index 39e209336e63c1ee487e6133e4c3809e3b51f66c..0590767f2def4c9627504274471eae59ff6a4323 100644 (file)
@@ -1,6 +1,6 @@
 " Vim syntax file
 " Language:    MMIX
-" Maintainer:  Dirk Hüsken, <huesken@informatik.uni-tuebingen.de>
+" Maintainer:  Dirk Hüsken, <huesken@informatik.uni-tuebingen.de>
 " Last Change: 2012 Jun 01
 "              (Dominique Pelle added @Spell)
 " Filenames:   *.mms
index 617058f8e32a5518176cd9d65db4fe869ac148e4..6f2dd59e8418e53479d5dd0f393a4afebcfdbbdd 100644 (file)
@@ -1,7 +1,7 @@
 " Vim syntax file
 " Language:    MOO
 " Maintainer:  Timo Frenay <timo@frenay.net>
-" Last Change: 2001 Oct 06
+" Last Change: 2020 Oct 19
 " Note:                Requires Vim 6.0 or above
 
 " quit when a syntax file was already loaded
@@ -95,7 +95,7 @@ if exists("moo_unknown_builtin_functions")
   syn keyword mooKnownBuiltinFunction abs acos add_property add_verb asin atan binary_hash boot_player buffered_output_length callers caller_perms call_function ceil children chparent clear_property connected_players connected_seconds connection_name connection_option connection_options cos cosh create crypt ctime db_disk_size decode_binary delete_property delete_verb disassemble dump_database encode_binary equal eval exp floatstr floor flush_input force_input function_info idle_seconds index is_clear_property is_member is_player kill_task length listappend listdelete listen listeners listinsert listset log log10 match max max_object memory_usage min move notify object_bytes open_network_connection output_delimiters parent pass players properties property_info queued_tasks queue_info raise random read recycle renumber reset_max_object resume rindex rmatch seconds_left server_log server_version setadd setremove set_connection_option set_player_flag set_property_info set_task_perms set_verb_args set_verb_code set_verb_info shutdown sin sinh sqrt strcmp string_hash strsub substitute suspend tan tanh task_id task_stack ticks_left time tofloat toint toliteral tonum toobj tostr trunc typeof unlisten valid value_bytes value_hash verbs verb_args verb_code verb_info contained
 endif
 
-" Enclosed expressions
+" Enclosed expressions
 syn match mooUnenclosedError display ~[')\]|}]~
 syn match mooParenthesesError display ~[';\]|}]~ contained
 syn region mooParentheses start=~(~ end=~)~ transparent contains=@mooEnclosedContents,mooParenthesesError
index 3a8cf9585624d002cc7d78ae855261513d753191..04532e04bfd8a9d5d14159ca536305427fe7705a 100644 (file)
@@ -1,6 +1,6 @@
 " VIM syntax file
 " Language:    nroff/groff
-" Maintainer:  Pedro Alejandro López-Valencia <palopezv@gmail.com>
+" Maintainer:  Pedro Alejandro López-Valencia <palopezv@gmail.com>
 " URL:         http://vorbote.wordpress.com/
 " Last Change: 2012 Feb 2
 "
@@ -8,7 +8,7 @@
 "
 " ACKNOWLEDGEMENTS:
 "
-" My thanks to Jérôme Plût <Jerome.Plut@ens.fr>, who was the
+" My thanks to Jérôme Plût <Jerome.Plut@ens.fr>, who was the
 " creator and maintainer of this syntax file for several years.
 " May I be as good at it as he has been.
 "
index 2a58ee43f64665d7755e6772e1e610683cd2e8ad..535efc99d3fb726590c17a75f24249e6052e8acc 100644 (file)
@@ -2,7 +2,7 @@
 " Language:    Pascal
 " Version: 2.8
 " Last Change: 2004/10/17 17:47:30
-" Maintainer:  Xavier Crégut <xavier.cregut@enseeiht.fr>
+" Maintainer:  Xavier Crégut <xavier.cregut@enseeiht.fr>
 " Previous Maintainer: Mario Eusebio <bio@dq.fct.unl.pt>
 
 " Contributors: Tim Chase <tchase@csc.com>,
index 396bf52b25a0c6e803cb5b0ce64db6541dc18c68..fcb9b0275deecec510f1ec319e6bb78bbf40b163 100644 (file)
@@ -1,7 +1,7 @@
 " Vim syntax file
 " Language:    "Robots.txt" files
 " Robots.txt files indicate to WWW robots which parts of a web site should not be accessed.
-" Maintainer:  Dominique Stéphan (dominique@mggen.com)
+" Maintainer:  Dominique Stéphan (dominique@mggen.com)
 " URL: http://www.mggen.com/vim/syntax/robots.zip
 " Last change: 2001 May 09
 
index f339f7ae6eabb915803832f89032f0c73082e475..28c250b7c47bcdd246a1cd0cf01c6e616c9e778e 100644 (file)
@@ -2,7 +2,7 @@
 " Language:    RPL/2
 " Version:     0.15.15 against RPL/2 version 4.00pre7i
 " Last Change: 2012 Feb 03 by Thilo Six
-" Maintainer:  Joël BERTRAND <rpl2@free.fr>
+" Maintainer:  Joël BERTRAND <rpl2@free.fr>
 " URL:         http://www.makalis.fr/~bertrand/rpl2/download/vim/indent/rpl.vim
 " Credits:     Nothing
 
index c856f9ffcfbea57522c6db6c7e490c5d30ec702f..f8e031ba21edc9544d5f6407962124aa37de03bf 100644 (file)
@@ -7,7 +7,7 @@
 " .hlp (windows help files) use compiled rtf files
 " rtf documentation at http://night.primate.wisc.edu/software/RTF/
 "
-" Maintainer:  Dominique Stéphan (dominique@mggen.com)
+" Maintainer:  Dominique Stéphan (dominique@mggen.com)
 " URL: http://www.mggen.com/vim/syntax/rtf.zip
 " Last change: 2001 Mai 02
 
index 3fdebf1e2e0a99e945956cca4c42e13bccb03922..d2a3360d2430cfc83ed2b7dca7127b2b4ffedd5a 100644 (file)
@@ -1,7 +1,7 @@
 " Vim syntax file
 " This file works only for Vim6.x
 " Language:    Tilde
-" Maintainer:  Tobias Rundström <tobi@tildesoftware.net>
+" Maintainer:  Tobias Rundström <tobi@tildesoftware.net>
 " URL:         http://www.tildesoftware.net
 " CVS:         $Id: tilde.vim,v 1.1 2004/06/13 19:31:51 vimboss Exp $
 
index d70ed63f74ca5701b22443017a7bd604c0ca4597..22be56d7250842d8b33ae1ec2e6b29039bcf88c8 100644 (file)
@@ -2,7 +2,7 @@
 " This is a GENERATED FILE. Please always refer to source file at the URI below.
 " Language: XKB (X Keyboard Extension) components
 " Maintainer: David Ne\v{c}as (Yeti) <yeti@physics.muni.cz>
-" Last Change: 2020 Oct 06
+" Last Change: 2020 Oct 18
 " URL: http://trific.ath.cx/Ftp/vim/syntax/xkb.vim
 
 " Setup
@@ -41,7 +41,7 @@ syn match xkbPhysicalKey "<\w\+>"
 syn keyword xkbPreproc augment include replace
 syn keyword xkbConstant False True
 syn keyword xkbModif override replace
-syn keyword xkbIdentifier action affect alias allowExplicit approx baseColor button clearLocks color controls cornerRadius count ctrls description driveskbd font fontSize gap group groups height indicator indicatorDrivesKeyboard interpret key keys labelColor latchToLock latchMods left level_name map maximum minimum modifier_map modifiers name offColor onColor outline preserve priority repeat row section section setMods shape slant solid symbols text top type useModMapMods virtualModifier virtualMods virtual_modifiers weight whichModState width
+syn keyword xkbIdentifier action affect alias allowExplicit approx baseColor button clearLocks color controls cornerRadius count ctrls description driveskbd font fontSize gap group groups height indicator indicatorDrivesKeyboard interpret key keys labelColor latchToLock latchMods left level_name map maximum minimum modifier_map modifiers name offColor onColor outline preserve priority repeat row section setMods shape slant solid symbols text top type useModMapMods virtualModifier virtualMods virtual_modifiers weight whichModState width
 syn keyword xkbFunction AnyOf ISOLock LatchGroup LatchMods LockControls LockGroup LockMods LockPointerButton MovePtr NoAction PointerButton SetControls SetGroup SetMods SetPtrDflt Terminate
 syn keyword xkbTModif default hidden partial virtual
 syn keyword xkbSect alphanumeric_keys alternate_group function_keys keypad_keys modifier_keys xkb_compatibility xkb_geometry xkb_keycodes xkb_keymap xkb_semantics xkb_symbols xkb_types
index e19c2c42dfe6a7d346a28df8a9d1d0b8455e56a0..6d1f66bd816c2270e8a5bf054213f70b29773db0 100644 (file)
@@ -3557,8 +3557,6 @@ msgstr "E538: Geen muisondersteuning nie"
 msgid "E540: Unclosed expression sequence"
 msgstr "E540: Onvoltooide uitdrukkingreeks"
 
-msgid "E541: too many items"
-msgstr "E541: te veel items"
 
 msgid "E542: unbalanced groups"
 msgstr "E542: ongebalanseerde groepe"
index 5fb5ede67b57f1ead85d6d08f76f5308eb6b0139..9e13bcebeb39976c1b355688f54f3522339b3434 100644 (file)
@@ -4253,8 +4253,6 @@ msgstr "E538: No hi ha suport per a ratol
 msgid "E540: Unclosed expression sequence"
 msgstr "E540: Seqüència d'expressions no tancada"
 
-msgid "E541: too many items"
-msgstr "E541: massa ítems"
 
 msgid "E542: unbalanced groups"
 msgstr "E542: grups desequilibrats"
index a5e9c260fc194fcd8b9c0ace90db02939a5acb22..96df7b312ae7e3dd50eeb9e42ee5f74d1592a955 100644 (file)
@@ -4346,8 +4346,6 @@ msgstr "E538: Ingen understøttelse af mus"
 msgid "E540: Unclosed expression sequence"
 msgstr "E540: Ulukket udtryk-sekvens"
 
-msgid "E541: too many items"
-msgstr "E541: for mange punkter"
 
 msgid "E542: unbalanced groups"
 msgstr "E542: ubalancerede grupper"
index e92fb832beb0d56b1ff62723e21d0afccd1c1ae4..5cb2d35dd88dee9a6cead16f6f3f21d8702f6616 100644 (file)
@@ -4098,8 +4098,6 @@ msgstr "F
 msgid "E540: Unclosed expression sequence"
 msgstr "E540: Nicht-geschlossene Ausdrucksfolge"
 
-msgid "E541: too many items"
-msgstr "E541: Zu viele Elemente"
 
 msgid "E542: unbalanced groups"
 msgstr "E542: Unausgewogene Gruppen"
index fcee297afc1e12426c211346b69390f4b70e5763..77e7f89f203c584fd47f4a691677457072408273 100644 (file)
@@ -557,8 +557,6 @@ msgid "E536: comma required"
 msgstr "E536: Comma required"
 
 
-msgid "E541: too many items"
-msgstr "E541: Too many items"
 
 msgid "E542: unbalanced groups"
 msgstr "E542: Unbalanced groups"
index 5f0da207b5ae4d20b6321cffc34de03e54490bf2..4a6fcbb3aaaa26b3f782f8b99292a45b6fcd2aa4 100644 (file)
@@ -4041,8 +4041,6 @@ msgstr "Por opcio %s"
 msgid "E540: Unclosed expression sequence"
 msgstr "E540: '}' mankas"
 
-msgid "E541: too many items"
-msgstr "E541: tro da elementoj"
 
 msgid "E542: unbalanced groups"
 msgstr "E542: misekvilibraj grupoj"
index 6c6d147eae6fa92ca0cc6140bfdaccff40836958..24ade6591c6ffdd849d8a2eab3223e936b22858b 100644 (file)
@@ -4266,8 +4266,6 @@ msgstr "E538: No hay soporte para el ratón"
 msgid "E540: Unclosed expression sequence"
 msgstr "E540: Secuencia de expresión sin cerrar"
 
-msgid "E541: too many items"
-msgstr "E541: Demasiados elementos"
 
 msgid "E542: unbalanced groups"
 msgstr "E542: Grupos sin equilibrar"
index 166472c4820d3d84173c38014dc89a94cb2d2d1d..40ce55dfdaccbfce07bc60fb2669f0e6ffdd1533 100644 (file)
@@ -4297,8 +4297,6 @@ msgstr "E538: Hiirtä ei tueta"
 msgid "E540: Unclosed expression sequence"
 msgstr "E540: Sulkematon lausekesarja"
 
-msgid "E541: too many items"
-msgstr "E541: liikaa kohteita"
 
 msgid "E542: unbalanced groups"
 msgstr "E542: epätasapainoisia ryhmiä"
index bb69493614d488e3c7f53cebb5c5328540b0103a..13be518255e3240542ffbbbd2de4970a7c6f268e 100644 (file)
@@ -4380,8 +4380,6 @@ msgstr "Pour l'option %s"
 msgid "E540: Unclosed expression sequence"
 msgstr "E540: '}' manquant"
 
-msgid "E541: too many items"
-msgstr "E541: trop d'éléments"
 
 msgid "E542: unbalanced groups"
 msgstr "E542: parenthèses non équilibrées"
index 3ef02b411bd72b9d51ae8a642993a93866a9dd6d..1f37cbc0692d503b0234d207abe23200112990bd 100644 (file)
@@ -4375,8 +4375,6 @@ msgstr "E538: Gan taca
 msgid "E540: Unclosed expression sequence"
 msgstr "E540: Seicheamh gan dúnadh"
 
-msgid "E541: too many items"
-msgstr "E541: an iomarca míreanna"
 
 msgid "E542: unbalanced groups"
 msgstr "E542: grúpaí neamhchothromaithe"
index 77e4ef06b73f86fac3298e3925ac3990a9a62af9..8925c922dc8450d87b2658c51be7c0bead0db6c8 100644 (file)
@@ -4136,8 +4136,6 @@ msgstr "E538: Manca supporto mouse"
 msgid "E540: Unclosed expression sequence"
 msgstr "E540: Espressione non terminata"
 
-msgid "E541: too many items"
-msgstr "E541: troppi elementi"
 
 msgid "E542: unbalanced groups"
 msgstr "E542: gruppi sbilanciati"
index 935874b47726f69d6b6d1ecb45798d97ea5b365f..085e8dbb43dd41199c6d2dc1eb1693b8a68c58c7 100644 (file)
@@ -4142,8 +4142,6 @@ msgstr "
 msgid "E540: Unclosed expression sequence"
 msgstr "E540: ¼°¤¬½ªÎ»¤·¤Æ¤¤¤Þ¤»¤ó"
 
-msgid "E541: too many items"
-msgstr "E541: Í×ÁǤ¬Â¿²á¤®¤Þ¤¹"
 
 msgid "E542: unbalanced groups"
 msgstr "E542: ¥°¥ë¡¼¥×¤¬Äà¹ç¤¤¤Þ¤»¤ó"
index acc152e75c9b2b0476c5f5ee8e6e65ec73b4fd2d..014fd35af3bb34365386380c61c83c37a4656a48 100644 (file)
@@ -4142,8 +4142,6 @@ msgstr "オプション: %s"
 msgid "E540: Unclosed expression sequence"
 msgstr "E540: 式が終了していません"
 
-msgid "E541: too many items"
-msgstr "E541: 要素が多過ぎます"
 
 msgid "E542: unbalanced groups"
 msgstr "E542: グループが釣合いません"
index 927f4f4f73c362de2117f7d24d4a72bd9620d0aa..dcd091e25da6c6c6707aa1bc4847d0c72383b9b3 100644 (file)
@@ -4142,8 +4142,6 @@ msgstr "
 msgid "E540: Unclosed expression sequence"
 msgstr "E540: \8e®\82ª\8fI\97¹\82µ\82Ä\82¢\82Ü\82¹\82ñ"
 
-msgid "E541: too many items"
-msgstr "E541: \97v\91f\82ª\91½\89ß\82¬\82Ü\82·"
 
 msgid "E542: unbalanced groups"
 msgstr "E542: \83O\83\8b\81[\83v\82ª\92Þ\8d\87\82¢\82Ü\82¹\82ñ"
index a4864e731197a9671e90522eae83d765029e5381..53703905155cccb5a96dc9524d8ed31460db0c11 100644 (file)
@@ -4282,8 +4282,6 @@ msgstr "E538: 마우스를 지원하지 않습니다"
 msgid "E540: Unclosed expression sequence"
 msgstr "E540: 닫히지 않은 표현식 배열"
 
-msgid "E541: too many items"
-msgstr "E541: 너무 많은 항목"
 
 msgid "E542: unbalanced groups"
 msgstr "E542: 균형이 안 잡힌 그룹"
index 9f2ff703391930d1dc947fb7f45168e16926ed07..481f50fe587d2249cc923bf8593f0b5505f9a855 100644 (file)
@@ -4282,8 +4282,6 @@ msgstr "E538: 
 msgid "E540: Unclosed expression sequence"
 msgstr "E540: ´ÝÈ÷Áö ¾ÊÀº Ç¥Çö½Ä ¹è¿­"
 
-msgid "E541: too many items"
-msgstr "E541: ³Ê¹« ¸¹Àº Ç׸ñ"
 
 msgid "E542: unbalanced groups"
 msgstr "E542: ±ÕÇüÀÌ ¾È ÀâÈù ±×·ì"
index 7e99deb2488bc4a153ce2c5e6740f63ce95cb94b..011102bd19ccb876961152e06d330131491a21a3 100644 (file)
@@ -4124,8 +4124,6 @@ msgstr "E538: Ingen st
 msgid "E540: Unclosed expression sequence"
 msgstr "E540: Uttrykkssekvens som ikke er lukket"
 
-msgid "E541: too many items"
-msgstr "E541: For mange elementer"
 
 msgid "E542: unbalanced groups"
 msgstr "E542: Ubalanserte grupper"
index 1047e3471bc253a7fbb3acb74dd5e5466a03e99a..5136b9ee8dd387bcdf6a71eb2ea0649fed1c151e 100644 (file)
@@ -3715,8 +3715,6 @@ msgstr "E538: geen muisondersteuning"
 msgid "E540: Unclosed expression sequence"
 msgstr "E540: ongepaarde expressie-volgorde"
 
-msgid "E541: too many items"
-msgstr "E541: teveel items"
 
 msgid "E542: unbalanced groups"
 msgstr "E542: ongepaarde groepen"
index 7e99deb2488bc4a153ce2c5e6740f63ce95cb94b..011102bd19ccb876961152e06d330131491a21a3 100644 (file)
@@ -4124,8 +4124,6 @@ msgstr "E538: Ingen st
 msgid "E540: Unclosed expression sequence"
 msgstr "E540: Uttrykkssekvens som ikke er lukket"
 
-msgid "E541: too many items"
-msgstr "E541: For mange elementer"
 
 msgid "E542: unbalanced groups"
 msgstr "E542: Ubalanserte grupper"
index 886d43af307b2f561f3ba3108539ac3bcd52ba91..118ad18e740dc1eaf6e1e89740b4003513001e08 100644 (file)
@@ -4308,8 +4308,6 @@ msgstr "E538: Brak wspomagania myszki"
 msgid "E540: Unclosed expression sequence"
 msgstr "E540: Niedomknięty ciąg wyrażeń"
 
-msgid "E541: too many items"
-msgstr "E541: zbyt wiele elementów"
 
 msgid "E542: unbalanced groups"
 msgstr "E542: niezbalansowane grupy"
index 007c8d34fa178cd61423e28fe7274926aa640721..1438033679a3c2454ba531822316870343253b8c 100644 (file)
@@ -4308,8 +4308,6 @@ msgstr "E538: Brak wspomagania myszki"
 msgid "E540: Unclosed expression sequence"
 msgstr "E540: Niedomkniêty ci¹g wyra¿eñ"
 
-msgid "E541: too many items"
-msgstr "E541: zbyt wiele elementów"
 
 msgid "E542: unbalanced groups"
 msgstr "E542: niezbalansowane grupy"
index eb95bd5e39b9d154ae84378149246cd71d543a5f..aa6b53fa86d496eee7d69a77ed253105f6a04247 100644 (file)
@@ -4308,8 +4308,6 @@ msgstr "E538: Brak wspomagania myszki"
 msgid "E540: Unclosed expression sequence"
 msgstr "E540: Niedomkniêty ci±g wyra¿eñ"
 
-msgid "E541: too many items"
-msgstr "E541: zbyt wiele elementów"
 
 msgid "E542: unbalanced groups"
 msgstr "E542: niezbalansowane grupy"
index 65dcf37883f2fca918a077262dd4c11723c7f0c4..4acdccbbef72e84b2372a4522fe50059d762e04f 100644 (file)
@@ -4308,8 +4308,6 @@ msgstr "E538: Não há suporte a mouse"
 msgid "E540: Unclosed expression sequence"
 msgstr "E540: Expressão não terminada com '}'"
 
-msgid "E541: too many items"
-msgstr "E541: itens demais"
 
 msgid "E542: unbalanced groups"
 msgstr "E542: parênteses desequilibrados"
index bd9c9dc7256c24a8b143888369f9fa00a8402eba..083b7ba0442fd71d5f3cad88dc56a0df9192ecc8 100644 (file)
@@ -4249,8 +4249,6 @@ msgstr "
 msgid "E540: Unclosed expression sequence"
 msgstr "E540: Íåçàêðûòàÿ ïîñëåäîâàòåëüíîñòü âûðàæåíèÿ"
 
-msgid "E541: too many items"
-msgstr "E541: Ñëèøêîì ìíîãî ýëåìåíòîâ"
 
 msgid "E542: unbalanced groups"
 msgstr "E542: Íåñáàëàíñèðîâàííûå ãðóïïû"
index d2b70a3e8017c85bbf502e0e7b999db238d9a121..754674a3b755c71aa324649445c1303b35b57fe6 100644 (file)
@@ -4249,8 +4249,6 @@ msgstr "Для опции %s"
 msgid "E540: Unclosed expression sequence"
 msgstr "E540: Незакрытая последовательность выражения"
 
-msgid "E541: too many items"
-msgstr "E541: Слишком много элементов"
 
 msgid "E542: unbalanced groups"
 msgstr "E542: Несбалансированные группы"
index c492f2aab855bef512737c9275c3fbdc035c8c42..9cb663eb748f016234e41974971c31fb862893a3 100644 (file)
@@ -3897,8 +3897,6 @@ msgstr "E538: Bez podpory my
 msgid "E540: Unclosed expression sequence"
 msgstr "E540: Neuzatvorené zoskupenie výrazov"
 
-msgid "E541: too many items"
-msgstr "E541: príli\9a mnoho polo\9eiek"
 
 msgid "E542: unbalanced groups"
 msgstr "E542: nevyvá\9eené skupiny"
index 380a929e3b3bd85a4be8570606a717d9741fbd43..75ce4513edabc1fcf73dd7acf27515c99edc1e0e 100644 (file)
@@ -3897,8 +3897,6 @@ msgstr "E538: Bez podpory my
 msgid "E540: Unclosed expression sequence"
 msgstr "E540: Neuzatvorené zoskupenie výrazov"
 
-msgid "E541: too many items"
-msgstr "E541: príli¹ mnoho polo¾iek"
 
 msgid "E542: unbalanced groups"
 msgstr "E542: nevyvá¾ené skupiny"
index 87ec416dfef4af2358e162b0b66ac3d2c106a07e..714d824039f1646f8ee4ddf17a79c52671302147 100644 (file)
@@ -4205,8 +4205,6 @@ msgstr "За опцију %s"
 msgid "E540: Unclosed expression sequence"
 msgstr "E540: Низ израза није затворен"
 
-msgid "E541: too many items"
-msgstr "E541: превише ставки"
 
 msgid "E542: unbalanced groups"
 msgstr "E542: неуравнотежене групе"
index 35b9a620b21971d987376ff7e1dcc83e7d05c3aa..f793d99f7c8c03ef6c652cfed6bee4d762a81fe7 100644 (file)
@@ -4103,8 +4103,6 @@ msgstr "E538: Inget musst
 msgid "E540: Unclosed expression sequence"
 msgstr "E540: Ostängd uttryckssekvens"
 
-msgid "E541: too many items"
-msgstr "E541: för många föremål"
 
 msgid "E542: unbalanced groups"
 msgstr "E542: obalanserade grupper"
index bf3386d025a682a4e437c0abe93004ae85891c21..6ddb84f2b4fdcd62bc422c678e685e4df0d66460 100644 (file)
@@ -3990,8 +3990,6 @@ msgstr "%s seçeneği için"
 msgid "E540: Unclosed expression sequence"
 msgstr "E540: Kapatılmamış ifade sıralaması"
 
-msgid "E541: too many items"
-msgstr "E541: Çok fazla öge"
 
 msgid "E542: unbalanced groups"
 msgstr "E542: Dengelenmemiş gruplar"
index 78593aa23e3e866ffc230d60fd6d5dd8195ae6e5..de6be7fc77594950afaa8fba1bed3c315d6da907 100644 (file)
@@ -4458,8 +4458,6 @@ msgstr "E538: 
 msgid "E540: Unclosed expression sequence"
 msgstr "E540: Ïîñë³äîâí³ñòü âèðàç³â íå çàâåðøåíî"
 
-msgid "E541: too many items"
-msgstr "E541: Çàáàãàòî åëåìåíò³â"
 
 msgid "E542: unbalanced groups"
 msgstr "E542: Ãðóïè íå çáàëàíñîâàíî"
index bb020af9565ca7d729190b905cc876f4af55096a..d15339f7d97e7c4fffbd578159a43ddbd96a0123 100644 (file)
@@ -4458,8 +4458,6 @@ msgstr "E538: Миша не підтримується"
 msgid "E540: Unclosed expression sequence"
 msgstr "E540: Послідовність виразів не завершено"
 
-msgid "E541: too many items"
-msgstr "E541: Забагато елементів"
 
 msgid "E542: unbalanced groups"
 msgstr "E542: Групи не збалансовано"
index 24b7001aa821838e23d75edcfa4a11f038c60e58..b3298ea0013ebb3462100d104e84effe4247d23b 100644 (file)
@@ -3602,8 +3602,6 @@ msgstr "E538: Chuột không được hỗ trợ"
 msgid "E540: Unclosed expression sequence"
 msgstr "E540: Dãy các biểu thức không đóng"
 
-msgid "E541: too many items"
-msgstr "E541: quá nhiều phần tử"
 
 msgid "E542: unbalanced groups"
 msgstr "E542: các nhóm không cân bằng"
index 83ed01e68a11e375690b9fa549f2facda8693982..ee442e8ccbef06c7e21ffd3c95523a475580a412 100644 (file)
@@ -4028,8 +4028,6 @@ msgstr "E538: 不支持鼠标"
 msgid "E540: Unclosed expression sequence"
 msgstr "E540: 没有结束的表达式序列"
 
-msgid "E541: too many items"
-msgstr "E541: 项目过多"
 
 msgid "E542: unbalanced groups"
 msgstr "E542: 错乱的组"
index 3feed9de315fe6dfa082d4854f29b18804cd7a79..b4c57211cf929e3bbc73f9db1e83c4ebed59eb01 100644 (file)
@@ -4028,8 +4028,6 @@ msgstr "E538: 
 msgid "E540: Unclosed expression sequence"
 msgstr "E540: Ã»ÓнáÊøµÄ±í´ïʽÐòÁÐ"
 
-msgid "E541: too many items"
-msgstr "E541: ÏîÄ¿¹ý¶à"
 
 msgid "E542: unbalanced groups"
 msgstr "E542: ´íÂÒµÄ×é"
index 606b75c4984af926cd70ad1b607ce9c2dc2669ce..6d4b367e127a161938df977b09246ea99c755a60 100644 (file)
@@ -4028,8 +4028,6 @@ msgstr "E538: 
 msgid "E540: Unclosed expression sequence"
 msgstr "E540: Ã»ÓнáÊøµÄ±í´ïʽÐòÁÐ"
 
-msgid "E541: too many items"
-msgstr "E541: ÏîÄ¿¹ý¶à"
 
 msgid "E542: unbalanced groups"
 msgstr "E542: ´íÂÒµÄ×é"
index e991b7a3ff11d01bf34dd0df0342648102be5d3c..351e513e1c26ffd3ecd051313e5810ef4b871cab 100644 (file)
@@ -3587,8 +3587,6 @@ msgstr "E538: 不支援滑鼠"
 msgid "E540: Unclosed expression sequence"
 msgstr "E540: 沒有結束的運算式: "
 
-msgid "E541: too many items"
-msgstr "E541: 太多項目"
 
 msgid "E542: unbalanced groups"
 msgstr "E542: 不對稱的 group"
index 657d604118b18d56ff24a38400bc28d2016c24ab..ae57144858032ce681d37daf1fc0ff31fc82f270 100644 (file)
@@ -3580,8 +3580,6 @@ msgstr "E538: 
 msgid "E540: Unclosed expression sequence"
 msgstr "E540: ¨S¦³µ²§ôªº¹Bºâ¦¡: "
 
-msgid "E541: too many items"
-msgstr "E541: ¤Ó¦h¶µ¥Ø"
 
 msgid "E542: unbalanced groups"
 msgstr "E542: ¤£¹ïºÙªº group"