]> granicus.if.org Git - vim/commitdiff
Update runtime files
authorBram Moolenaar <Bram@vim.org>
Wed, 9 Feb 2022 21:50:44 +0000 (21:50 +0000)
committerBram Moolenaar <Bram@vim.org>
Wed, 9 Feb 2022 21:50:44 +0000 (21:50 +0000)
77 files changed:
runtime/doc/autocmd.txt
runtime/doc/builtin.txt
runtime/doc/if_pyth.txt
runtime/doc/index.txt
runtime/doc/options.txt
runtime/doc/quickfix.txt
runtime/doc/syntax.txt
runtime/doc/tags
runtime/doc/todo.txt
runtime/doc/uganda.txt
runtime/doc/vim9.txt
runtime/ftplugin.vim
runtime/ftplugof.vim
runtime/menu.vim
runtime/syntax/vim.vim
runtime/tutor/tutor
runtime/tutor/tutor.bar
runtime/tutor/tutor.bar.utf-8
runtime/tutor/tutor.bg.utf-8
runtime/tutor/tutor.ca
runtime/tutor/tutor.ca.utf-8
runtime/tutor/tutor.cs
runtime/tutor/tutor.cs.cp1250
runtime/tutor/tutor.cs.utf-8
runtime/tutor/tutor.da
runtime/tutor/tutor.da.utf-8
runtime/tutor/tutor.de
runtime/tutor/tutor.de.utf-8
runtime/tutor/tutor.el
runtime/tutor/tutor.el.cp737
runtime/tutor/tutor.el.utf-8
runtime/tutor/tutor.hr
runtime/tutor/tutor.hr.cp1250
runtime/tutor/tutor.hr.utf-8
runtime/tutor/tutor.hu
runtime/tutor/tutor.hu.cp1250
runtime/tutor/tutor.hu.utf-8
runtime/tutor/tutor.it
runtime/tutor/tutor.it.utf-8
runtime/tutor/tutor.ja.euc
runtime/tutor/tutor.ja.sjis
runtime/tutor/tutor.ja.utf-8
runtime/tutor/tutor.ko
runtime/tutor/tutor.ko.euc
runtime/tutor/tutor.ko.utf-8
runtime/tutor/tutor.lv.utf-8
runtime/tutor/tutor.nb
runtime/tutor/tutor.nb.utf-8
runtime/tutor/tutor.nl
runtime/tutor/tutor.nl.utf-8
runtime/tutor/tutor.no
runtime/tutor/tutor.no.utf-8
runtime/tutor/tutor.pl
runtime/tutor/tutor.pl.cp1250
runtime/tutor/tutor.pl.utf-8
runtime/tutor/tutor.pt
runtime/tutor/tutor.pt.utf-8
runtime/tutor/tutor.ru
runtime/tutor/tutor.ru.cp1251
runtime/tutor/tutor.ru.utf-8
runtime/tutor/tutor.sk
runtime/tutor/tutor.sk.cp1250
runtime/tutor/tutor.sk.utf-8
runtime/tutor/tutor.sr.cp1250
runtime/tutor/tutor.sr.utf-8
runtime/tutor/tutor.sv
runtime/tutor/tutor.sv.utf-8
runtime/tutor/tutor.tr.iso9
runtime/tutor/tutor.tr.utf-8
runtime/tutor/tutor.uk.utf-8
runtime/tutor/tutor.utf-8
runtime/tutor/tutor.vi.utf-8
runtime/tutor/tutor.zh.big5
runtime/tutor/tutor.zh.euc
runtime/tutor/tutor.zh.utf-8
runtime/tutor/tutor.zh_cn.utf-8
runtime/tutor/tutor.zh_tw.utf-8

index c410ae67e58205f39964e9104772fb277c2c6fb1..ebb6197740e4d52c0f936592b267fc2af8ac1bea 100644 (file)
@@ -1,4 +1,4 @@
-*autocmd.txt*   For Vim version 8.2.  Last change: 2022 Jan 21
+*autocmd.txt*   For Vim version 8.2.  Last change: 2022 Feb 09
 
 
                  VIM REFERENCE MANUAL    by Bram Moolenaar
@@ -741,7 +741,7 @@ DiffUpdated                 After diffs have been updated.  Depending on
                                change or when doing |:diffupdate|.
                                                        *DirChangedPre*
 DirChangedPre                  The working directory is going to be changed,
-                               as with ||DirChanged|.  The pattern is like
+                               as with |DirChanged|.  The pattern is like
                                with |DirChanged|.  The new directory can be
                                found in v:event.directory.
                                                        *DirChanged*
index 8299597830ad653dc707eba8ee2c49055397d33f..299bcba634562fa1de291a7534504501e287a43c 100644 (file)
@@ -1,4 +1,4 @@
-*builtin.txt*  For Vim version 8.2.  Last change: 2022 Feb 04
+*builtin.txt*  For Vim version 8.2.  Last change: 2022 Feb 08
 
 
                  VIM REFERENCE MANUAL    by Bram Moolenaar
@@ -4670,9 +4670,11 @@ islocked({expr})                                 *islocked()* *E786*
                        :echo islocked('alist')         " 1
                        :echo islocked('alist[1]')      " 0
 
-<              When {expr} is a variable that does not exist you get an error
-               message.  Use |exists()| to check for existence.
-               In Vim9 script it does not work for local variables.
+<              When {expr} is a variable that does not exist -1 is returned.
+               If {expr} uses a range, list or dict index that is out of
+               range or does not exist you get an error message.  Use
+               |exists()| to check for existence.
+               In Vim9 script it does not work for local function variables.
 
                Can also be used as a |method|: >
                        GetName()->islocked()
index 79b1716425f8c7cb77721bf3683bbb1f158d94fd..19b8b67cb7e713abe630799669547a1ace04c080 100644 (file)
@@ -1,4 +1,4 @@
-*if_pyth.txt*   For Vim version 8.2.  Last change: 2021 Nov 12
+*if_pyth.txt*   For Vim version 8.2.  Last change: 2022 Feb 07
 
 
                  VIM REFERENCE MANUAL    by Paul Moore
@@ -65,7 +65,7 @@ There is no need to import sys, it's done by default.
 
                                                        *python-environment*
 Environment variables set in Vim are not always available in Python.  This
-depends on how Vim and Python were build.  Also see
+depends on how Vim and Python were built.  Also see
 https://docs.python.org/3/library/os.html#os.environ
 
 Note: Python is very sensitive to the indenting.  Make sure the "class" line
@@ -834,6 +834,19 @@ To work around such problems there are these options:
 Raising SystemExit exception in python isn't endorsed way to quit vim, use: >
        :py vim.command("qall!")
 <
+                                                       *E1266*
+This error can occur when python 3 cannot load the required modules.  This
+means that your python 3 is not correctly installed or there are some mistakes
+in your settings.  Please check the following items:
+1. Make sure that python 3 is correctly installed.  Also check the version of
+   python.
+2. Check the 'pythonthreedll' option.
+3. Check the 'pythonthreehome' option.
+4. Check the PATH environment variable if you don't set 'pythonthreedll'.
+   On MS-Windows, you can use where.exe to check which dll will be loaded.
+   E.g. >
+       where.exe python310.dll
+5. Check the PYTHONPATH and PYTHONHOME environment variables.
 
                                                        *has-python*
 You can test what Python version is available with: >
index c4129ea22eade0316fcfd49fa449fe23b14f8118..8403baca627ee56a4b719386a6d1c5a65177cdf7 100644 (file)
@@ -1,4 +1,4 @@
-*index.txt*     For Vim version 8.2.  Last change: 2022 Jan 28
+*index.txt*     For Vim version 8.2.  Last change: 2022 Feb 09
 
 
                  VIM REFERENCE MANUAL    by Bram Moolenaar
@@ -1152,7 +1152,7 @@ tag               command         action ~
 |:&|           :&              repeat last ":substitute"
 |:star|                :*              execute contents of a register
 |:<|           :<              shift lines one 'shiftwidth' left
-|:=|           :=              print the cursor line number
+|:=|           :=              print the last line number
 |:>|           :>              shift lines one 'shiftwidth' right
 |:@|           :@              execute contents of a register
 |:@@|          :@@             repeat the previous ":@"
index ee2caa753081e7b832d8455556917a43f70b3266..1d3f76864b2f70a714c549c3333ee803d31d914e 100644 (file)
@@ -1,4 +1,4 @@
-*options.txt*  For Vim version 8.2.  Last change: 2022 Feb 04
+*options.txt*  For Vim version 8.2.  Last change: 2022 Feb 08
 
 
                  VIM REFERENCE MANUAL    by Bram Moolenaar
index 6bb259f723a93d0cdf7b210b956d4592f3e5a6bb..b2b5514e375036b6cc7d45df62dbf5d0475d3794 100644 (file)
@@ -1,4 +1,4 @@
-*quickfix.txt*  For Vim version 8.2.  Last change: 2022 Jan 04
+*quickfix.txt*  For Vim version 8.2.  Last change: 2022 Feb 08
 
 
                  VIM REFERENCE MANUAL    by Bram Moolenaar
index a23ac881e740a82de4ac451a89268462616bb1c2..d95278a84da17c98eb378a609e157c6323979155 100644 (file)
@@ -1,4 +1,4 @@
-*syntax.txt*   For Vim version 8.2.  Last change: 2022 Feb 04
+*syntax.txt*   For Vim version 8.2.  Last change: 2022 Feb 06
 
 
                  VIM REFERENCE MANUAL    by Bram Moolenaar
@@ -3713,12 +3713,13 @@ DEFINING CASE                                           *:syn-case* *E390*
        items until the next ":syntax case" command are affected.
 
 :sy[ntax] case
-       Show either "syntax case match" or "syntax case ignore" (translated).
+       Show either "syntax case match" or "syntax case ignore".
 
 
 DEFINING FOLDLEVEL                                     *:syn-foldlevel*
 
-:sy[ntax] foldlevel [start | minimum]
+:sy[ntax] foldlevel start
+:sy[ntax] foldlevel minimum
        This defines how the foldlevel of a line is computed when using
        foldmethod=syntax (see |fold-syntax| and |:syn-fold|):
 
@@ -3731,13 +3732,16 @@ DEFINING FOLDLEVEL                                      *:syn-foldlevel*
        may close and open horizontally within a line.
 
 :sy[ntax] foldlevel
-       Show either "syntax foldlevel start" or "syntax foldlevel minimum".
+       Show the current foldlevel method, either "syntax foldlevel start" or
+       "syntax foldlevel minimum".
 
        {not meaningful when Vim was compiled without |+folding| feature}
 
 SPELL CHECKING                                         *:syn-spell*
 
-:sy[ntax] spell [toplevel | notoplevel | default]
+:sy[ntax] spell toplevel
+:sy[ntax] spell notoplevel
+:sy[ntax] spell default
        This defines where spell checking is to be done for text that is not
        in a syntax item:
 
@@ -3752,8 +3756,8 @@ SPELL CHECKING                                            *:syn-spell*
        To activate spell checking the 'spell' option must be set.
 
 :sy[ntax] spell
-       Show either "syntax spell toplevel", "syntax spell notoplevel" or
-       "syntax spell default" (translated).
+       Show the current syntax spell checking method, either "syntax spell
+       toplevel", "syntax spell notoplevel" or "syntax spell default".
 
 
 SYNTAX ISKEYWORD SETTING                               *:syn-iskeyword*
@@ -4352,7 +4356,7 @@ IMPLICIT CONCEAL                                  *:syn-conceal-implicit*
        given explicitly.
 
 :sy[ntax] conceal
-       Show either "syntax conceal on" or "syntax conceal off" (translated).
+       Show either "syntax conceal on" or "syntax conceal off".
 
 ==============================================================================
 8. Syntax patterns                             *:syn-pattern* *E401* *E402*
index a15371e7f9330a8bbe5156c28661eda70b358c49..4d80e60774b37a79e2ccf227ed83d56a02a7c556 100644 (file)
@@ -3948,6 +3948,7 @@ Dictionary-function       eval.txt        /*Dictionary-function*
 DiffUpdated    autocmd.txt     /*DiffUpdated*
 Digraphs       digraph.txt     /*Digraphs*
 DirChanged     autocmd.txt     /*DirChanged*
+DirChangedPre  autocmd.txt     /*DirChangedPre*
 E      motion.txt      /*E*
 E10    message.txt     /*E10*
 E100   diff.txt        /*E100*
@@ -4234,6 +4235,7 @@ E1262     vim9.txt        /*E1262*
 E1263  eval.txt        /*E1263*
 E1264  vim9.txt        /*E1264*
 E1265  eval.txt        /*E1265*
+E1266  if_pyth.txt     /*E1266*
 E127   eval.txt        /*E127*
 E128   eval.txt        /*E128*
 E129   eval.txt        /*E129*
index c74bce6713ec589bed82f5af426c5167af1d5e51..76bdc171f7e73c4dcf41716ad606db91f70b26ac 100644 (file)
@@ -1,4 +1,4 @@
-*todo.txt*      For Vim version 8.2.  Last change: 2022 Feb 04
+*todo.txt*      For Vim version 8.2.  Last change: 2022 Feb 09
 
 
                  VIM REFERENCE MANUAL    by Bram Moolenaar
@@ -39,8 +39,14 @@ browser use: https://github.com/vim/vim/issues/1234
 -------------------- Known bugs and current work -----------------------
 
 Once Vim9 is stable:
-- Check code coverage, add more tests if needed.
 - Use Vim9 for runtime files.
+- Check code coverage, add more tests if needed.
+       vim9compile.c
+       vim9execute.c
+       vim9expr.c
+       vim9instr.c
+       vim9script.c
+       vim9type.c
 
 Further Vim9 improvements, possibly after launch:
 - Check performance with callgrind and kcachegrind.
@@ -4834,9 +4840,6 @@ Autocommands:
     CursorHoldC     - CursorHold while command-line editing
     WinMoved       - when windows have been moved around, e.g, ":wincmd J"
     SearchPost     - After doing a search command (e.g. to do "M")
-    PreDirChanged/PostDirChanged
-                   - Before/after ":cd" has been used (for changing the
-                     window title)
     ShutDown       - when the system is about to shut down
     InsertCharPost  - user typed a character in Insert mode, after inserting
                      the char.
index a71cf030ff8b385e692d7dd5ca7559e4eabdc88b..6b7b8739c59652f43fbf917a290b68ac16355189 100644 (file)
@@ -1,4 +1,4 @@
-*uganda.txt*    For Vim version 8.2.  Last change: 2022 Feb 04
+*uganda.txt*    For Vim version 8.2.  Last change: 2022 Feb 05
 
 
                  VIM REFERENCE MANUAL    by Bram Moolenaar
@@ -223,7 +223,7 @@ Canada:             Contact Kuwasha in Surrey, Canada.  They take care of the
                forwards 100% of the money to the project in Uganda.  You can
                send them a one time donation directly.
                Please send me a note so that I know what has been donated
-               because of Vim.  Look on their for information about
+               because of Vim.  Look on their site for information about
                sponsorship: https://www.kuwasha.net/
                If you make a donation to Kuwasha you will receive a tax
                receipt which can be submitted with your tax return.
@@ -248,7 +248,7 @@ Credit Card:        You can use PayPal to send money with a Credit card.  This is
                The e-mail address for sending the money to is:
                    Bram@iccf-holland.org
 
-Others:                Transfer to one of these accounts if possible:
+Others:                Transfer to this account if possible:
                    ING bank:   IBAN: NL95 INGB 0004 5487 74
                                Swift code: INGBNL2A
                    under the name "stichting ICCF Holland", Amersfoort
index afa3239f090212303c0a4ad89b454c2b757df667..143de797a44549739a2608b1cc4697ed4bde65a7 100644 (file)
@@ -1,4 +1,4 @@
-*vim9.txt*     For Vim version 8.2.  Last change: 2022 Feb 04
+*vim9.txt*     For Vim version 8.2.  Last change: 2022 Feb 09
 
 
                  VIM REFERENCE MANUAL    by Bram Moolenaar
@@ -221,12 +221,12 @@ Functions and variables are script-local by default ~
 When using `:function` or `:def` to specify a new function at the script level
 in a Vim9 script, the function is local to the script, as if "s:" was
 prefixed.  Using the "s:" prefix is optional.  To define a global function or
-variable the "g:" prefix must be used.  For functions in an autoload script
-the "name#" prefix is sufficient. >
+variable the "g:" prefix must be used.  For functions in a script that is to
+be imported and in an autoload script "export" needs to be used. >
        def ThisFunction()          # script-local
        def s:ThisFunction()        # script-local
        def g:ThatFunction()        # global
-       def scriptname#function()   # autoload
+       export def Function()       # for import and import autoload
 <                                              *E1058* *E1075*
 When using `:function` or `:def` to specify a nested function inside a `:def`
 function and no namespace was given, this nested function is local to the code
@@ -280,7 +280,9 @@ You want to use this in scripts that use a `finish` command to bail out at
 some point when loaded again.  E.g. when a buffer local option is set: >
        vim9script noclear
        setlocal completefunc=SomeFunc
-       if exists('*g:SomeFunc') | finish | endif
+       if exists('*g:SomeFunc')
+         finish
+       endif
        def g:SomeFunc()
        ....
 
@@ -1398,14 +1400,24 @@ Results in:
 For script-local variables in Vim9 script the type is checked, also when the
 variable was declared in a legacy function.
 
-When a type has been declared this is attached to a list or string.  When
+When a type has been declared this is attached to a List or Dictionary.  When
 later some expression attempts to change the type an error will be given: >
        var ll: list<number> = [1, 2, 3]
        ll->extend(['x'])  # Error, 'x' is not a number
 
-If the type is inferred then the type is allowed to change: >
+If the type is not declared then it is allowed to change: >
        [1, 2, 3]->extend(['x'])  # result: [1, 2, 3, 'x']
 
+For a variable declaration an inferred type matters: >
+       var ll = [1, 2, 3]
+       ll->extend(['x'])  # Error, 'x' is not a number
+That is because the declaration looks like a list of numbers, thus is
+equivalent to: >
+       var ll: list<number> = [1, 2, 3]
+If you do want a more permissive list you need to declare the type: >
+       var ll: list<any = [1, 2, 3]
+       ll->extend(['x'])  # OK
+
 
 Stricter type checking ~
                                                        *type-checking*
index 645f8c3e67f7fa4a31213d35fb706e57e6a85e48..9109a6e458657751bcc4fc0a2dea7d32d874bd5f 100644 (file)
@@ -1,18 +1,25 @@
-" Vim support file to switch on loading plugins for file types
-"
-" Maintainer:  Bram Moolenaar <Bram@vim.org>
-" Last change: 2022 Feb 04
+vim9script noclear
 
-if exists("did_load_ftplugin")
+# Vim support file to switch on loading plugins for file types
+#
+# Maintainer:  Bram Moolenaar <Bram@vim.org>
+# Last change: 2022 Feb 09
+
+if exists("g:did_load_ftplugin")
   finish
 endif
-let did_load_ftplugin = 1
+g:did_load_ftplugin = 1
 
 augroup filetypeplugin
-  au FileType * call s:LoadFTPlugin()
+  au FileType * call LoadFTPlugin()
 augroup END
 
-def s:LoadFTPlugin()
+if exists('*LoadFTPlugin')
+  # No need to define the function again.
+  finish
+endif
+
+def LoadFTPlugin()
   if exists("b:undo_ftplugin")
     exe b:undo_ftplugin
     unlet! b:undo_ftplugin b:did_ftplugin
index 7828ff2c159a1c6f9c09783bd078f4a73c2a0f70..e0505ce62fa001d5ec9bc31d96bc6df67942fb82 100644 (file)
@@ -1,13 +1,15 @@
-" Vim support file to switch off loading plugins for file types
-"
-" Maintainer:  Bram Moolenaar <Bram@vim.org>
-" Last Change: 2011 Oct 20
+vim9script
 
-if exists("did_load_ftplugin")
-  unlet did_load_ftplugin
+# Vim support file to switch off loading plugins for file types
+#
+# Maintainer:  Bram Moolenaar <Bram@vim.org>
+# Last Change: 2022 Feb 09
+
+if exists("g:did_load_ftplugin")
+  unlet g:did_load_ftplugin
 endif
 
-" Remove all autocommands in the filetypeplugin group, if any exist.
+# Remove all autocommands in the filetypeplugin group, if any exist.
 if exists("#filetypeplugin")
   silent! au! filetypeplugin *
 endif
index 0a2bd1fb0b246a3207a922523be4ec956eebe1ba..12924af6fb34872bead8d8af8261dc1cdf4cb1b0 100644 (file)
@@ -1201,8 +1201,8 @@ an 50.710 &Syntax.Co&lor\ Test            :sp $VIMRUNTIME/syntax/colortest.vim<Bar>so %<CR
 an 50.720 &Syntax.&Highlight\ Test     :runtime syntax/hitest.vim<CR>
 an 50.730 &Syntax.&Convert\ to\ HTML   :runtime syntax/2html.vim<CR>
 
-" Uncomment this to compile the functions early to find any mistakes
-defcompile
+" Uncomment the next line to compile the functions early to find any mistakes
+defcompile
 
 endif " !exists("did_install_syntax_menu")
 
index ae70087a0f87772f8663b8be16ff9981940d8180..e42c270e9f0a57d467d78792a6f73a404baa7279 100644 (file)
@@ -1,8 +1,8 @@
 " Vim syntax file
 " Language:    Vim 8.2 script
 " Maintainer:  Charles E. Campbell <NcampObell@SdrPchip.AorgM-NOSPAM>
-" Last Change: February 01, 2022
-" Version:     8.2-27
+" Last Change: February 09, 2022
+" Version:     8.2-28
 " URL: http://www.drchip.org/astronaut/vim/index.html#SYNTAX_VIM
 " Automatically generated keyword lists: {{{1
 
@@ -66,8 +66,8 @@ syn keyword vimErrSetting contained   bioskey biosk conskey consk autoprint beauti
 
 " AutoCmd Events {{{2
 syn case ignore
-syn keyword vimAutoEvent contained     BufAdd BufDelete BufFilePost BufHidden BufNew BufRead BufReadPost BufUnload BufWinLeave BufWrite BufWritePost CmdlineChanged CmdlineLeave CmdwinEnter ColorScheme ColorSchemePre CompleteChanged CompleteDone CompleteDonePre CursorHold CursorHoldI CursorMoved CursorMovedI DiffUpdated DirChanged EncodingChanged ExitPre FileAppendCmd FileAppendPost FileAppendPre FileChangedRO FileChangedShell FileChangedShellPost FileEncoding FileExplorer FileReadCmd FileReadPost FileReadPre FileType FileWriteCmd FileWritePost FileWritePre FilterReadPost FilterReadPre FilterWritePost FilterWritePre FocusGained FocusLost FuncUndefined GUIEnter GUIFailed InsertChange InsertCharPre InsertEnter InsertLeave InsertLeavePre MenuPopup ModeChanged OptionSet QuickFixCmdPost QuickFixCmdPre QuitPre RemoteReply SafeState SafeStateAgain SessionLoadPost ShellCmdPost ShellFilterPost SigUSR1 SourceCmd SourcePost SourcePre SpellFileMissing StdinReadPost StdinReadPre SwapExists Syntax TabClosed TabEnter TabLeave TabNew TermChanged TerminalOpen TerminalWinOpen TermResponse TextChanged TextChangedI TextChangedP TextYankPost User VimEnter VimLeave VimLeavePre VimResized VimResume VimSuspend WinClosed WinEnter WinLeave WinNew
-syn keyword vimAutoEvent contained     BufCreate BufEnter BufFilePre BufLeave BufNewFile BufReadCmd BufReadPre BufWinEnter BufWipeout BufWriteCmd BufWritePre CmdlineEnter CmdUndefined CmdwinLeave
+syn keyword vimAutoEvent contained     BufAdd BufDelete BufFilePost BufHidden BufNew BufRead BufReadPost BufUnload BufWinLeave BufWrite BufWritePost CmdlineChanged CmdlineLeave CmdwinEnter ColorScheme CompleteChanged CompleteDone CompleteDonePre CursorHold CursorHoldI CursorMoved CursorMovedI DiffUpdated DirChanged DirChangedPre EncodingChanged ExitPre FileAppendCmd FileAppendPost FileAppendPre FileChangedRO FileChangedShell FileChangedShellPost FileEncoding FileExplorer FileReadCmd FileReadPost FileReadPre FileType FileWriteCmd FileWritePost FileWritePre FilterReadPost FilterReadPre FilterWritePost FilterWritePre FocusGained FocusLost FuncUndefined GUIEnter GUIFailed InsertChange InsertCharPre InsertEnter InsertLeave InsertLeavePre MenuPopup ModeChanged OptionSet QuickFixCmdPost QuickFixCmdPre QuitPre RemoteReply SafeState SafeStateAgain SessionLoadPost ShellCmdPost ShellFilterPost SigUSR1 SourceCmd SourcePost SourcePre SpellFileMissing StdinReadPost StdinReadPre SwapExists Syntax TabClosed TabEnter TabLeave TabNew TermChanged TerminalOpen TerminalWinOpen TermResponse TextChanged TextChangedI TextChangedP TextYankPost User VimEnter VimLeave VimLeavePre VimResized VimResume VimSuspend WinClosed WinEnter WinLeave WinNew
+syn keyword vimAutoEvent contained     BufCreate BufEnter BufFilePre BufLeave BufNewFile BufReadCmd BufReadPre BufWinEnter BufWipeout BufWriteCmd BufWritePre CmdlineEnter CmdUndefined CmdwinLeave ColorSchemePre
 
 " Highlight commonly used Groupnames {{{2
 syn keyword vimGroup contained Comment Constant String Character Number Boolean Float Identifier Function Statement Conditional Repeat Label Operator Keyword Exception PreProc Include Define Macro PreCondit Type StorageClass Structure Typedef Special SpecialChar Tag Delimiter SpecialComment Debug Underlined Ignore Error Todo
index a78e6a4b1a82a39724a12be16b08776f624b8f94..98c41778453ca4653e25616984acf76bef136ea7 100644 (file)
@@ -955,7 +955,7 @@ NOTE:  Completion works for many commands.  Just try pressing CTRL-D and
        Publisher: New Riders
   The first book completely dedicated to Vim.  Especially useful for beginners.
   There are many examples and pictures.
-  See http://iccf-holland.org/click5.html
+  See https://iccf-holland.org/click5.html
 
   This book is older and more about Vi than Vim, but also recommended:
        Learning the Vi Editor - by Linda Lamb
index dd23fa08cec42817780373bed25c5638d9032bc2..ec30eddaf171d2331d0def368e6380740930bf03 100644 (file)
@@ -954,7 +954,7 @@ Anm
     Verlaag: New Riders
   Dös ist dös eerste Buech, wo ganz yn n Wimm gwidmt ist, netty dös Grechte für
   Anfönger. Es haat ayn Wösn Beispiler und aau Bilder drinn.
-  See http://iccf-holland.org/click5.html
+  See https://iccf-holland.org/click5.html
 
   Dös folgete Buech  ist schoon ölter und meerer  über n Urwimm  als wie über n
   Wimm,  aber aau zo n Empfelhen:   Textbearbeitung mit dem vi-Editor - von dyr
@@ -968,7 +968,7 @@ Anm
     mitp-Verlaag, Buechlaittzal 978-3-8266-1781-2
   Trotz dyr recht pfrengen Darstöllung  ist s durch seine viln nützlichnen Bei-
   spiler aau für Einsteiger grad grecht.  Probhaeupster und de Beispilschripfer
-  seind zesig zo n Kriegn; see   http://iccf-holland.org/click5.html
+  seind zesig zo n Kriegn; see   https://iccf-holland.org/click5.html
 
   Verfasst habnd dönn Schainer dyr PIERCE Michael C. und WARE Robert K. von dyr
   Kolraader Knappnschuel (Colorado School of Mines). Er beruet auf Entwürff, wo
index ffae8a02ebd9818312ca909218753f17f5de76bf..42bea0eac2c54263902be6e467361561232c9757 100644 (file)
@@ -954,7 +954,7 @@ Anmörkung:  D Vergöntzung  geit s für aynn Hauffen Faudungen.  Versuech ainfa
     Verlaag: New Riders
   Dös ist dös eerste Buech, wo ganz yn n Wimm gwidmt ist, netty dös Grechte für
   Anfönger. Es haat ayn Wösn Beispiler und aau Bilder drinn.
-  See http://iccf-holland.org/click5.html
+  See https://iccf-holland.org/click5.html
 
   Dös folgete Buech  ist schoon ölter und meerer  über n Urwimm  als wie über n
   Wimm,  aber aau zo n Empfelhen:   Textbearbeitung mit dem vi-Editor - von dyr
@@ -968,7 +968,7 @@ Anmörkung:  D Vergöntzung  geit s für aynn Hauffen Faudungen.  Versuech ainfa
     mitp-Verlaag, Buechlaittzal 978-3-8266-1781-2
   Trotz dyr recht pfrengen Darstöllung  ist s durch seine viln nützlichnen Bei-
   spiler aau für Einsteiger grad grecht.  Probhaeupster und de Beispilschripfer
-  seind zesig zo n Kriegn; see   http://iccf-holland.org/click5.html
+  seind zesig zo n Kriegn; see   https://iccf-holland.org/click5.html
 
   Verfasst habnd dönn Schainer dyr PIERCE Michael C. und WARE Robert K. von dyr
   Kolraader Knappnschuel (Colorado School of Mines). Er beruet auf Entwürff, wo
index 9599ffd3118785087b7545053a89fb3fa5608d1d..325ed784e58ba607a885a024dfe8ce961d3e7815 100644 (file)
        Издател: New Riders
   Това е първата книга, изцяло посветена на Vim. Особено полезна е за
   начинаещи. В нея ще намерите много примери и картинки.
-  Вижте http://iccf-holland.org/click5.html
+  Вижте https://iccf-holland.org/click5.html
 
   Следната книга е по-стара и по-скоро за Vi отколкото за Vim, но също се препоръчва:
        Learning the Vi Editor - от Linda Lamb
index 2501c4716073407bd4c989233bb5c12bb0696261..808a87d61bfb7a266a7a0d0c5b8dc20ddce54e62 100644 (file)
@@ -792,7 +792,7 @@ Nota: Aix
         Editorial: New Riders
   És el primer llibre dedicat completament al Vim, especialment útil per a
   usuaris novells. Conté molts exemples i diagrames.
-  Vegeu http://iccf-holland.org/click5.html
+  Vegeu https://iccf-holland.org/click5.html
 
   Aquest altre és més vell i tracta més sobre el Vi que sobre el Vim:
         Learning the Vi Editor - de Linda Lamb
index 18de0123dc521c405ecad70d801957e92ce59c3e..f39154b8039bd039d783fbfca26bf84e54d20289 100644 (file)
@@ -792,7 +792,7 @@ Nota: Així s'evita haver de prémer  i , l'últim caràcter, el text a inserir,
         Editorial: New Riders
   És el primer llibre dedicat completament al Vim, especialment útil per a
   usuaris novells. Conté molts exemples i diagrames.
-  Vegeu http://iccf-holland.org/click5.html
+  Vegeu https://iccf-holland.org/click5.html
 
   Aquest altre és més vell i tracta més sobre el Vi que sobre el Vim:
         Learning the Vi Editor - de Linda Lamb
index a301ddc1008c9f419bb06ac5ae9364c589ffb4c3..6d62bb583857ffb61ee39058c2e6d27db105b395 100644 (file)
@@ -791,7 +791,7 @@ Pozn
        Nakladatel: New Riders
   První kniha urèená pro Vim. Obzvlá¹tì vhodná pro zaèáteèníky.
   Obsahuje mno¾ství pøíkladù a obrázkù.
-  viz http://iccf-holland.org/click5.html
+  viz https://iccf-holland.org/click5.html
 
   Tato kniha je star¹í a více vìnovaná Vi ne¾ Vim, ale také doporuèená:
        Learning the Vi Editor - od Linda Lamb
index 8056db8d91cb1ef59b1abd34ba9a2b53a182e119..26567db91cfd7a415331864631fd000f48b52848 100644 (file)
@@ -791,7 +791,7 @@ Pozn
        Nakladatel: New Riders
   První kniha urèená pro Vim. Obzvlá\9atì vhodná pro zaèáteèníky.
   Obsahuje mno\9eství pøíkladù a obrázkù.
-  viz http://iccf-holland.org/click5.html
+  viz https://iccf-holland.org/click5.html
 
   Tato kniha je star\9aí a více vìnovaná Vi ne\9e Vim, ale také doporuèená:
        Learning the Vi Editor - od Linda Lamb
index c850b988203b5c02f36d4f387e970c5216478482..36bb3a2d0fd0eaeee315768a22c51eb0f7f537d0 100644 (file)
@@ -791,7 +791,7 @@ Poznámka: Tímto se vyhneš stisknutí  i  , posledního znaku, textu na vlože
        Nakladatel: New Riders
   První kniha určená pro Vim. Obzvláště vhodná pro začátečníky.
   Obsahuje množství příkladů a obrázků.
-  viz http://iccf-holland.org/click5.html
+  viz https://iccf-holland.org/click5.html
 
   Tato kniha je starší a více věnovaná Vi než Vim, ale také doporučená:
        Learning the Vi Editor - od Linda Lamb
index 77af092f1967b4641759ecc697fe7d48ad5c9fb8..ba62fce53c623407fe50f934a5dc204941f370df 100644 (file)
@@ -953,7 +953,7 @@ BEM
        Forlag: New Riders
   Den første bog som helt er tilegnet Vim. Specielt nyttig for begyndere.
   Der er mange eksempler og billeder.
-  Se http://iccf-holland.org/click5.html
+  Se https://iccf-holland.org/click5.html
 
   Denne bog er ældre og mere om Vi end Vim, men anbefales også:
        Learning the Vi Editor - af Linda Lamb
index 83071760c031a2bedd6da367707bb5a32e0590ae..dad3ea8a7e3df1fb12847e37b0b5d45f76b6e4ef 100644 (file)
@@ -953,7 +953,7 @@ BEMÆRK: Fuldførelse virker til mange kommandoer. Prøv blot at trykke på
        Forlag: New Riders
   Den første bog som helt er tilegnet Vim. Specielt nyttig for begyndere.
   Der er mange eksempler og billeder.
-  Se http://iccf-holland.org/click5.html
+  Se https://iccf-holland.org/click5.html
 
   Denne bog er ældre og mere om Vi end Vim, men anbefales også:
        Learning the Vi Editor - af Linda Lamb
index ce1242dff4d72a7e202d784123181b6c06c2ce9b..599fdc7b64c015fcdca21edb40ea6c37b9128ed2 100644 (file)
@@ -956,7 +956,7 @@ Anmerkung: Vervollst
        Verlag: New Riders
   Das erste Buch, welches durchgängig Vim gewidmet ist.  Besonders nützlich
   für Anfänger.  Viele Beispiele und Bilder sind enthalten.
-  Siehe http://iccf-holland.org/click5.html
+  Siehe https://iccf-holland.org/click5.html
 
   Folgendes Buch ist älter und mehr über Vi als Vim, aber auch empfehlenswert:
        Textbearbeitung mit dem Vi-Editor  -  von Linda Lamb und Arnold Robbins
@@ -970,7 +970,7 @@ Anmerkung: Vervollst
        mitp-Verlag, ISBN 3-8266-1425-9
   Trotz der kompakten Darstellung ist es durch viele nützliche Beispiele auch
   für Einsteiger empfehlenswert.  Probekapitel und die Beispielskripte sind
-  online erhältlich.  Siehe http://iccf-holland.org/click5.html
+  online erhältlich.  Siehe https://iccf-holland.org/click5.html
 
   Dieses Tutorial wurde geschrieben von Michael C. Pierce und Robert K. Ware,
   Colorado School of Mines. Es benutzt Ideen, die Charles Smith, Colorado State
index 0ae2a1996f4a01f27b7106293dc11db3c9b96e65..9a5b592d9fea83881a499c41ee35f9c28cd87fa0 100644 (file)
@@ -956,7 +956,7 @@ Anmerkung: Vervollständigung funktioniert für viele Kommandos. Probiere
        Verlag: New Riders
   Das erste Buch, welches durchgängig Vim gewidmet ist.  Besonders nützlich
   für Anfänger.  Viele Beispiele und Bilder sind enthalten.
-  Siehe http://iccf-holland.org/click5.html
+  Siehe https://iccf-holland.org/click5.html
 
   Folgendes Buch ist älter und mehr über Vi als Vim, aber auch empfehlenswert:
        Textbearbeitung mit dem Vi-Editor  -  von Linda Lamb und Arnold Robbins
@@ -970,7 +970,7 @@ Anmerkung: Vervollständigung funktioniert für viele Kommandos. Probiere
        mitp-Verlag, ISBN 3-8266-1425-9
   Trotz der kompakten Darstellung ist es durch viele nützliche Beispiele auch
   für Einsteiger empfehlenswert.  Probekapitel und die Beispielskripte sind
-  online erhältlich.  Siehe http://iccf-holland.org/click5.html
+  online erhältlich.  Siehe https://iccf-holland.org/click5.html
 
   Dieses Tutorial wurde geschrieben von Michael C. Pierce und Robert K. Ware,
   Colorado School of Mines. Es benutzt Ideen, die Charles Smith, Colorado State
index 8b4fd900b674d9e97febaf0dc6b54b932397aab6..9a2fd98c6298691e77a9e6d137f244b18d795339 100644 (file)
        Ôï ðñþôï âéâëßï ðëÞñùò áöéåñùìÝíï óôïí Vim.
        Éäéáßôåñá ÷ñÞóéìï ãéá áñ÷Üñéïõò.
        ÕðÜñ÷ïõí ðïëëÜ ðáñáäåßãìáôá êáé åéêüíåò.
-       Äåßôå ôçí http://iccf-holland.org/click5.html
+       Äåßôå ôçí https://iccf-holland.org/click5.html
 
   Áõôü ôï âéâëßï åßíáé ðáëéüôåñï êáé ðåñéóóüôåñï ãéá ôïí Vi ðáñÜ ãéá ôïí Vim,
   áëëÜ åðßóçò óõíéóôþìåíï:
index 6dd173d74b4f9215d1b5aa40f0fd18a76174d63e..64833444b14199b64c68e8db7bfd2df371c88da4 100644 (file)
        \92¦ §¨é«¦ \99 \99¢å¦ §¢ã¨àª \98­ \9c¨à£â¤¦ ©«¦¤ Vim.
        \88\9b \98å«\9c¨\98 ®¨ã© £¦ \9a \98 \98¨®á¨ ¦¬ª.
        \93§á¨®¦¬¤ §¦¢¢á §\98¨\98\9b\9cå\9a£\98«\98 ¡\98  \9c ¡æ¤\9cª.
-       \83\9cå«\9c «\9e¤ http://iccf-holland.org/click5.html
+       \83\9cå«\9c «\9e¤ https://iccf-holland.org/click5.html
 
   \80¬«æ «¦ \99 \99¢å¦ \9cå¤\98  §\98¢ æ«\9c¨¦ ¡\98  §\9c¨ ©©æ«\9c¨¦ \9a \98 «¦¤ Vi §\98¨á \9a \98 «¦¤ Vim,
   \98¢¢á \9c§å©\9eª ©¬¤ ©«é£\9c¤¦:
index 67713000a3c34064df375a688e7a42ac452533ee..7cb9741293463091a88e93f1e9753acc218b4a74 100644 (file)
        Το πρώτο βιβλίο πλήρως αφιερωμένο στον Vim.
        Ιδιαίτερα χρήσιμο για αρχάριους.
        Υπάρχουν πολλά παραδείγματα και εικόνες.
-       Δείτε την http://iccf-holland.org/click5.html
+       Δείτε την https://iccf-holland.org/click5.html
 
   Αυτό το βιβλίο είναι παλιότερο και περισσότερο για τον Vi παρά για τον Vim,
   αλλά επίσης συνιστώμενο:
index 386b8d744c0134c60a8933c62965d2084f468ce0..fced37437e58e7b5dd0c15ed5bf4db2a85e602c5 100644 (file)
@@ -951,7 +951,7 @@ NAPOMENA:  Mogu
        Izdavaè: New Riders
   Prva knjiga potpuno posveæena Vim-u. Vrlo korisna za poèetnike.
   Sa mnogo primjera i slika.
-  Posjetite http://iccf-holland.org/click5.html
+  Posjetite https://iccf-holland.org/click5.html
 
   Sljedeæa knjiga je ne¹to starija i vi¹e o Vi-u nego o Vim-u, preporuèamo:
        Learning the Vi Editor - by Linda Lamb
index 0bde07870b6ebf75a8f5b01083a2e68d01820022..f968053b26dce79502013a92125f98b90ac03f28 100644 (file)
@@ -951,7 +951,7 @@ NAPOMENA:  Mogu
        Izdavaè: New Riders
   Prva knjiga potpuno posveæena Vim-u. Vrlo korisna za poèetnike.
   Sa mnogo primjera i slika.
-  Posjetite http://iccf-holland.org/click5.html
+  Posjetite https://iccf-holland.org/click5.html
 
   Sljedeæa knjiga je ne\9ato starija i vi\9ae o Vi-u nego o Vim-u, preporuèamo:
        Learning the Vi Editor - by Linda Lamb
index 91be19c9113e600bfac63ddb9b1d01e75bde9ea3..291def02084b777164f14e44f73356f13602632b 100644 (file)
@@ -951,7 +951,7 @@ NAPOMENA:  Moguće je dopuniti mnoge naredbe.  Koristite CTRL-D i <TAB>.
        Izdavač: New Riders
   Prva knjiga potpuno posvećena Vim-u. Vrlo korisna za početnike.
   Sa mnogo primjera i slika.
-  Posjetite http://iccf-holland.org/click5.html
+  Posjetite https://iccf-holland.org/click5.html
 
   Sljedeća knjiga je nešto starija i više o Vi-u nego o Vim-u, preporučamo:
        Learning the Vi Editor - by Linda Lamb
index ca47b3f9bf8364a8c58681627f10308466adaa6b..d895e19740635bfa50008568c56208916fe5fbd9 100644 (file)
@@ -810,7 +810,7 @@ Megj: A Vimben a sor legv
        Publisher: New Riders
   The first book completely dedicated to Vim.  Especially useful for beginners.
   There are many examples and pictures.
-  See http://iccf-holland.org/click5.html
+  See https://iccf-holland.org/click5.html
 
   This book is older and more about Vi than Vim, but also recommended:
        Learning the Vi Editor - by Linda Lamb
index ca47b3f9bf8364a8c58681627f10308466adaa6b..d895e19740635bfa50008568c56208916fe5fbd9 100644 (file)
@@ -810,7 +810,7 @@ Megj: A Vimben a sor legv
        Publisher: New Riders
   The first book completely dedicated to Vim.  Especially useful for beginners.
   There are many examples and pictures.
-  See http://iccf-holland.org/click5.html
+  See https://iccf-holland.org/click5.html
 
   This book is older and more about Vi than Vim, but also recommended:
        Learning the Vi Editor - by Linda Lamb
index 5e39c95acda6d53adb21d78a4413652f127b8b88..f2e0d403c6bb9093eb9bfaa9e5076f2a3769b694 100644 (file)
@@ -810,7 +810,7 @@ Megj: A Vimben a sor legvégére is lehet állni, azonban ez elődjében
        Publisher: New Riders
   The first book completely dedicated to Vim.  Especially useful for beginners.
   There are many examples and pictures.
-  See http://iccf-holland.org/click5.html
+  See https://iccf-holland.org/click5.html
 
   This book is older and more about Vi than Vim, but also recommended:
        Learning the Vi Editor - by Linda Lamb
index 96191e0475b777a045d8fd10fec1e22ce676f944..ce3b9707b9aa14c9a1c6d2ddced0e82fed8a6681 100644 (file)
@@ -951,7 +951,7 @@ NOTA:  Il completamento 
        Vim - Vi Improved - di Steve Oualline     Editore: New Riders
   Il primo libro completamente dedicato a Vim. Utile specie per principianti.
   Contiene molti esempi e figure.
-  Vedi http://iccf-holland.org/click5.html
+  Vedi https://iccf-holland.org/click5.html
 
   Quest'altro libro è più su Vi che su Vim, ma è pure consigliato:
        Learning the Vi Editor - di Linda Lamb e Arnold Robbins
index 0c53690d465b55b91523c6e353e28d5e54c6d216..d1f62e27749de09891c71199d9e3f5eaf2991062 100644 (file)
@@ -951,7 +951,7 @@ NOTA:  Il completamento è disponibile per molti comandi.  Prova a battere
        Vim - Vi Improved - di Steve Oualline     Editore: New Riders
   Il primo libro completamente dedicato a Vim. Utile specie per principianti.
   Contiene molti esempi e figure.
-  Vedi http://iccf-holland.org/click5.html
+  Vedi https://iccf-holland.org/click5.html
 
   Quest'altro libro è più su Vi che su Vim, ma è pure consigliato:
        Learning the Vi Editor - di Linda Lamb e Arnold Robbins
index 3b41337f922ccb026f926335beecbabdc4f6cca4..92e040db349cec0b3066a39c324738e756604bbe 100644 (file)
@@ -955,7 +955,7 @@ NOTE: 
        ½ÐÈǼÒ: New Riders
   ºÇ½é¤ÎËܤϴ°Á´¤Ë Vim ¤Î¤¿¤á¤Ë½ñ¤«¤ì¤Þ¤·¤¿¡£¤È¤ê¤ï¤±½é¿´¼Ô¤Ë¤Ï¤ª¾©¤á¤Ç¤¹¡£
   Â¿¤¯¤ÎÎãÂê¤ä¿ÞÈǤ¬·ÇºÜ¤µ¤ì¤Æ¤¤¤Þ¤¹¡£
-  ¼¡¤ÎURL¤ò»²¾È¤·¤Æ²¼¤µ¤¤ http://iccf-holland.org/click5.html
+  ¼¡¤ÎURL¤ò»²¾È¤·¤Æ²¼¤µ¤¤ https://iccf-holland.org/click5.html
 
   ¼¡¤Ï Vim ¤è¤ê¤â Vi ¤Ë¤Ä¤¤¤Æ½ñ¤«¤ì¤¿¸Å¤¤ËܤǤ¹¤¬¿äÁ¦¤·¤Þ¤¹:
        Learning the Vi Editor - by Linda Lamb
index 451745bee592bab274a159893ed2d1ff70983e92..ab463801cc49987d79dee0425c896b62471a6e74 100644 (file)
@@ -955,7 +955,7 @@ NOTE: 
        \8fo\94Å\8eÐ: New Riders
   \8dÅ\8f\89\82Ì\96{\82Í\8a®\91S\82É Vim \82Ì\82½\82ß\82É\8f\91\82©\82ê\82Ü\82µ\82½\81B\82Æ\82è\82í\82¯\8f\89\90S\8eÒ\82É\82Í\82¨\8f§\82ß\82Å\82·\81B
   \91½\82­\82Ì\97á\91è\82â\90}\94Å\82ª\8cf\8dÚ\82³\82ê\82Ä\82¢\82Ü\82·\81B
-  \8e\9f\82ÌURL\82ð\8eQ\8fÆ\82µ\82Ä\89º\82³\82¢ http://iccf-holland.org/click5.html
+  \8e\9f\82ÌURL\82ð\8eQ\8fÆ\82µ\82Ä\89º\82³\82¢ https://iccf-holland.org/click5.html
 
   \8e\9f\82Í Vim \82æ\82è\82à Vi \82É\82Â\82¢\82Ä\8f\91\82©\82ê\82½\8cÃ\82¢\96{\82Å\82·\82ª\90\84\91E\82µ\82Ü\82·:
        Learning the Vi Editor - by Linda Lamb
index 263223337633257e769a06a70a12bd58691221ea..8eaa72cf0550b4ea3dc19d4d0f9f878d40ea039b 100644 (file)
@@ -955,7 +955,7 @@ NOTE: 補完は多くのコマンドで動作します。そして CTRL-D と <T
        出版社: New Riders
   最初の本は完全に Vim のために書かれました。とりわけ初心者にはお奨めです。
   多くの例題や図版が掲載されています。
-  次のURLを参照して下さい http://iccf-holland.org/click5.html
+  次のURLを参照して下さい https://iccf-holland.org/click5.html
 
   次は Vim よりも Vi について書かれた古い本ですが推薦します:
        Learning the Vi Editor - by Linda Lamb
index 7146c9907b49c991c60c6b553e99b248fa4968ef..993c43de8c7b6042bb3fcbf3ad79217834b1f857 100644 (file)
@@ -949,7 +949,7 @@ ce 는 단어를 치환하는 것 뿐만 아니라, 내용을 삽입할 수 있
         출판사: New Riders
   이 책은 완전히 빔에 대해서만 다루고 있습니다.  특히 초보자들에게 유용합니다.
   많은 예제와 그림이 있습니다.
-  다음을 참고하십시오:  http://iccf-holland.org/click5.html
+  다음을 참고하십시오:  https://iccf-holland.org/click5.html
 
   다음 책은 좀 오래된 책으로 빔보다는 Vi에 대해 다루고 있지만, 역시 추천할 만
   합니다:
index 2e1a3d03f35416a06a9c8ba92d48d098e00e376a..b93bb3be3c3acdd192aec7f39878cec7296d587d 100644 (file)
@@ -949,7 +949,7 @@ ce 
         ÃâÆÇ»ç: New Riders
   À̠åÀº ¿ÏÀüÈ÷ ºö¿¡ ´ëÇؼ­¸¸ ´Ù·ç°í ÀÖ½À´Ï´Ù.  Æ¯È÷ Ãʺ¸Àڵ鿡°Ô À¯¿ëÇÕ´Ï´Ù.
   ¸¹Àº ¿¹Á¦¿Í ±×¸²ÀÌ ÀÖ½À´Ï´Ù.
-  ´ÙÀ½À» Âü°íÇϽʽÿÀ:  http://iccf-holland.org/click5.html
+  ´ÙÀ½À» Âü°íÇϽʽÿÀ:  https://iccf-holland.org/click5.html
 
   ´ÙÀ½ Ã¥Àº Á» ¿À·¡µÈ Ã¥À¸·Î ºöº¸´Ù´Â Vi¿¡ ´ëÇØ ´Ù·ç°í ÀÖÁö¸¸, ¿ª½Ã ÃßõÇÒ ¸¸
   ÇÕ´Ï´Ù:
index 7146c9907b49c991c60c6b553e99b248fa4968ef..993c43de8c7b6042bb3fcbf3ad79217834b1f857 100644 (file)
@@ -949,7 +949,7 @@ ce 는 단어를 치환하는 것 뿐만 아니라, 내용을 삽입할 수 있
         출판사: New Riders
   이 책은 완전히 빔에 대해서만 다루고 있습니다.  특히 초보자들에게 유용합니다.
   많은 예제와 그림이 있습니다.
-  다음을 참고하십시오:  http://iccf-holland.org/click5.html
+  다음을 참고하십시오:  https://iccf-holland.org/click5.html
 
   다음 책은 좀 오래된 책으로 빔보다는 Vi에 대해 다루고 있지만, 역시 추천할 만
   합니다:
index 91f402a6060cba70c97331cb77a5e64699d87990..e1ca778d0321c5b7e445f7a2332ae1df0be32b45 100644 (file)
@@ -986,7 +986,7 @@ PIEZĪME:  Pabeigšana strādā dažādām komandām.
   Vim - Vi Improved, Steve Oualline, New Riders
 
   Šī grāmata ir tieši par Vim, un ir ļoti ieteicama iesācējiem.
-  Daudzi piemēri un attēli no tās pieejami: http://iccf-holland.org/click5.html
+  Daudzi piemēri un attēli no tās pieejami: https://iccf-holland.org/click5.html
 
   Otra, vecāka grāmata ir par Vi, nevis Vim, bet arī ir ļoti noderīga:
 
index cad3eb66633c185d7738efcd50ee142b442771fe..9eb6dfa93a6c846549d5466aac93e492e6f4b9f2 100644 (file)
@@ -953,7 +953,7 @@ MERK: Fullf
       Utgiver: New Riders
   Den første boken som er fullt og helt dedisert til Vim. Spesielt nyttig for
   nybegynnere. Inneholder mange eksempler og illustrasjoner.
-  Se http://iccf-holland.org/click5.html
+  Se https://iccf-holland.org/click5.html
 
   Denne boken er eldre og handler mer om Vi enn Vim, men anbefales også:
       «Learning the Vi Editor» av Linda Lamb
index f07c535ac2696c5407cf14b86b52fb79e9508e1d..6a8a4e9463254d95e38ab90eb8f6ce7a6245fd03 100644 (file)
@@ -953,7 +953,7 @@ MERK: Fullføring fungerer for mange kommandoer. Prøv ved å trykke CTRL-D og
       Utgiver: New Riders
   Den første boken som er fullt og helt dedisert til Vim. Spesielt nyttig for
   nybegynnere. Inneholder mange eksempler og illustrasjoner.
-  Se http://iccf-holland.org/click5.html
+  Se https://iccf-holland.org/click5.html
 
   Denne boken er eldre og handler mer om Vi enn Vim, men anbefales også:
       «Learning the Vi Editor» av Linda Lamb
index bcb8e5214ce3b861c0b55bb47372c931ed4c67d2..eb5414d2dcc28be171c576206490855bd7bcd097 100644 (file)
       Uitgever: New Riders
   Dit is het eerste boek dat geheel aan Vim is gewijd. Speciaal geschikt
   voor beginners. Met veel voorbeelden en afbeeldingen.
-  Zie http://iccf-holland.org/click5.html
+  Zie https://iccf-holland.org/click5.html
 
   Het volgende boek is ouder en gaat meer over Vi dan Vim, maar het wordt
   toch aanbevolen:
index 7165995598132ada64e64452d5a72c92cf949093..1f4be70fefd5f236ad794ba7bb90db8308ccaa77 100644 (file)
       Uitgever: New Riders
   Dit is het eerste boek dat geheel aan Vim is gewijd. Speciaal geschikt
   voor beginners. Met veel voorbeelden en afbeeldingen.
-  Zie http://iccf-holland.org/click5.html
+  Zie https://iccf-holland.org/click5.html
 
   Het volgende boek is ouder en gaat meer over Vi dan Vim, maar het wordt
   toch aanbevolen:
index cad3eb66633c185d7738efcd50ee142b442771fe..9eb6dfa93a6c846549d5466aac93e492e6f4b9f2 100644 (file)
@@ -953,7 +953,7 @@ MERK: Fullf
       Utgiver: New Riders
   Den første boken som er fullt og helt dedisert til Vim. Spesielt nyttig for
   nybegynnere. Inneholder mange eksempler og illustrasjoner.
-  Se http://iccf-holland.org/click5.html
+  Se https://iccf-holland.org/click5.html
 
   Denne boken er eldre og handler mer om Vi enn Vim, men anbefales også:
       «Learning the Vi Editor» av Linda Lamb
index f07c535ac2696c5407cf14b86b52fb79e9508e1d..6a8a4e9463254d95e38ab90eb8f6ce7a6245fd03 100644 (file)
@@ -953,7 +953,7 @@ MERK: Fullføring fungerer for mange kommandoer. Prøv ved å trykke CTRL-D og
       Utgiver: New Riders
   Den første boken som er fullt og helt dedisert til Vim. Spesielt nyttig for
   nybegynnere. Inneholder mange eksempler og illustrasjoner.
-  Se http://iccf-holland.org/click5.html
+  Se https://iccf-holland.org/click5.html
 
   Denne boken er eldre og handler mer om Vi enn Vim, men anbefales også:
       «Learning the Vi Editor» av Linda Lamb
index 84fa65d21fc4380aba013dd1ba6d851d9991f5a4..e6834315686f052222675e2385d39a002bde8406 100644 (file)
@@ -954,7 +954,7 @@ UWAGA: Uzupe
        Wydawca: New Riders
   Pierwsza ksi±¿ka ca³kowicie po¶wiêcona Vimowi. U¿yteczna zw³aszcza dla
   pocz±tkuj±cych. Zawiera wiele przyk³adów i ilustracji.
-  Zobacz http://iccf-holland.org./click5.html
+  Zobacz https://iccf-holland.org./click5.html
 
   Starsza pozycja i bardziej o Vi ni¿ o Vimie, ale tak¿e warta
   polecenia:
index 8c70d65a51d3d196461d976e7bfaa117a6acadbe..129f8ec4f513638c77d1983b2d12ec5432a666dd 100644 (file)
@@ -954,7 +954,7 @@ UWAGA: Uzupe
        Wydawca: New Riders
   Pierwsza ksi¹¿ka ca³kowicie po\9cwiêcona Vimowi. U¿yteczna zw³aszcza dla
   pocz¹tkuj¹cych. Zawiera wiele przyk³adów i ilustracji.
-  Zobacz http://iccf-holland.org./click5.html
+  Zobacz https://iccf-holland.org./click5.html
 
   Starsza pozycja i bardziej o Vi ni¿ o Vimie, ale tak¿e warta
   polecenia:
index 55b8af9a0762511a4c5c706c45a6806d56e8024b..7856837b65a235e4ebdb017681bb986d46f9abd2 100644 (file)
@@ -954,7 +954,7 @@ UWAGA: Uzupełnianie działa dla wielu poleceń. Spróbuj wcisnąć CTRL-D i <TA
        Wydawca: New Riders
   Pierwsza książka całkowicie poświęcona Vimowi. Użyteczna zwłaszcza dla
   początkujących. Zawiera wiele przykładów i ilustracji.
-  Zobacz http://iccf-holland.org./click5.html
+  Zobacz https://iccf-holland.org./click5.html
 
   Starsza pozycja i bardziej o Vi niż o Vimie, ale także warta
   polecenia:
index 7d5cc6dcb3679f945b6a9a23e3efd3a6cfa50923..5735c09dc978907f61fe57c434a257f0f0ee14c0 100644 (file)
@@ -975,7 +975,7 @@ NOTA:  A completa
        Editora: New Riders
   Este é o primeiro livro completamente dedicado ao Vim. Especialmente útil
   para iniciantes, com muitos exemplos e ilustrações.
-  Veja http://iccf-holland.org/click5.html
+  Veja https://iccf-holland.org/click5.html
 
   Esse livro é mais antigo e mais sobre o Vi do que sobre o Vim, mas também é
   recomendado:
index a6058489667fb8d737c54a8d4fd190937e18e95b..9d8e758867753125260451b9d36ab0e0cedf019a 100644 (file)
@@ -975,7 +975,7 @@ NOTA:  A completação funciona com muitos comandos. Basta pressionar CTRL-D e
        Editora: New Riders
   Este é o primeiro livro completamente dedicado ao Vim. Especialmente útil
   para iniciantes, com muitos exemplos e ilustrações.
-  Veja http://iccf-holland.org/click5.html
+  Veja https://iccf-holland.org/click5.html
 
   Esse livro é mais antigo e mais sobre o Vi do que sobre o Vim, mas também é
   recomendado:
index 3abaeb232847075f6d16b75e41c70f8b4f77ab85..d1b5fd6bf95459db032fc32e8123bef39ad2fa80 100644 (file)
 
   üÔÁ ËÎÉÇÁ ÐÏÌÎÏÓÔØÀ ÐÏÓ×ÑÝÅÎÁ Vim. ïÓÏÂÅÎÎÏ ÐÏÌÅÚÎÁ ÏÎÁ ÂÕÄÅÔ ÎÏ×ÉÞËÁÍ.
   óÏÄÅÒÖÉÔ ÍÎÏÖÅÓÔ×Ï ÐÒÉÍÅÒÏ× É ÉÌÌÀÓÔÒÁÃÉÊ.
-  óÍ. http://iccf-holland.org/click5.html
+  óÍ. https://iccf-holland.org/click5.html
 
   óÌÅÄÕÀÝÁÑ ËÎÉÇÁ ÂÏÌÅÅ ÐÏÞÔÅÎÎÏÇÏ ×ÏÚÒÁÓÔÁ É ÐÏÓ×ÑÝÅÎÁ ÂÏÌØÛÅ Vi, ÞÅÍ Vim,
   ÏÄÎÁËÏ ÔÁËÖÅ ÒÅËÏÍÅÎÄÕÅÔÓÑ:
index af0dccc708832e0a019a315a438656364770bbc9..4493f0ee323e5f6f4c268c4360c785c84ca52f61 100644 (file)
 
   Ýòà êíèãà ïîëíîñòüþ ïîñâÿùåíà Vim. Îñîáåííî ïîëåçíà îíà áóäåò íîâè÷êàì.
   Ñîäåðæèò ìíîæåñòâî ïðèìåðîâ è èëëþñòðàöèé.
-  Ñì. http://iccf-holland.org/click5.html
+  Ñì. https://iccf-holland.org/click5.html
 
   Ñëåäóþùàÿ êíèãà áîëåå ïî÷òåííîãî âîçðàñòà è ïîñâÿùåíà áîëüøå Vi, ÷åì Vim,
   îäíàêî òàêæå ðåêîìåíäóåòñÿ:
index b2d9fa4a86ab56f6f09874e46cb0381607eb469e..0c13f5d4bf4f880624e9b6a24833b521bbb03041 100644 (file)
 
   Эта книга полностью посвящена Vim. Особенно полезна она будет новичкам.
   Содержит множество примеров и иллюстраций.
-  См. http://iccf-holland.org/click5.html
+  См. https://iccf-holland.org/click5.html
 
   Следующая книга более почтенного возраста и посвящена больше Vi, чем Vim,
   однако также рекомендуется:
index 7022db6ebd42d1ec462c7b26172515362045f06d..35b04c804bf7e8064eda354a1e34fceadca7dd7b 100644 (file)
@@ -986,7 +986,7 @@ POZN
   Vydavateµ: New Riders
   Prvá kniha urèená pre Vim. ©peciálne vhodná pre zaèiatoèníkov.
   Obsahuje mno¾stvo príkladov a obrázkov.
-  Pozri na http://iccf-holland.org/click5.html
+  Pozri na https://iccf-holland.org/click5.html
 
   Táto kniha je star¹ia a je viac o Vi ako o Vim, ale je tie¾ odporúèaná:
   Learning the Vi Editor - od Linda Lamb
index e120ce15ee21d3785b5bf6cdef3d7b8d928e4cd3..a1aee207c5fecd50f600ecd07d1acadde6e16d60 100644 (file)
@@ -986,7 +986,7 @@ POZN
   Vydavate¾: New Riders
   Prvá kniha urèená pre Vim. \8apeciálne vhodná pre zaèiatoèníkov.
   Obsahuje mno\9estvo príkladov a obrázkov.
-  Pozri na http://iccf-holland.org/click5.html
+  Pozri na https://iccf-holland.org/click5.html
 
   Táto kniha je star\9aia a je viac o Vi ako o Vim, ale je tie\9e odporúèaná:
   Learning the Vi Editor - od Linda Lamb
index c8acd0ca892a1034348525ebf7ff4755927e6eed..d25e9cbfe999e235fc55a72ab467365c193e4d96 100644 (file)
@@ -986,7 +986,7 @@ POZNÁMKA: Dokončovanie funguje pre veľa príkazov. Vyskúšaj stlačenie
   Vydavateľ: New Riders
   Prvá kniha určená pre Vim. Špeciálne vhodná pre začiatočníkov.
   Obsahuje množstvo príkladov a obrázkov.
-  Pozri na http://iccf-holland.org/click5.html
+  Pozri na https://iccf-holland.org/click5.html
 
   Táto kniha je staršia a je viac o Vi ako o Vim, ale je tiež odporúčaná:
   Learning the Vi Editor - od Linda Lamb
index 18f44fa59b12e4876ca865ae2b3775fda6169550..c4d0064cd8911eae8e694feafad0affa8c03cbe8 100644 (file)
@@ -951,7 +951,7 @@ NAPOMENA:  Mogu
        Izdavaè: New Riders
   Prva knjiga potpuno posveæena Vim-u.  Naroèito korisna za poèetnike.
   Ima mno\9atvo primera i slika.
-  Vidite http://iccf-holland.org/click5.html
+  Vidite https://iccf-holland.org/click5.html
 
   Sledeæa knjiga je starija i vi\9ae govori o Vi-u nego o Vim-u, ali je takoðe
   preporuèujemo:
index a237dccaeaa1f87cdb8f18887615dcc49b29b24c..5bad8483c441e8b30b830b0f2e94ee5eab3c4ab8 100644 (file)
@@ -951,7 +951,7 @@ NAPOMENA:  Moguće je dopuniti mnoge komande.  Samo probajte CTRL-D i <TAB>.
        Izdavač: New Riders
   Prva knjiga potpuno posvećena Vim-u.  Naročito korisna za početnike.
   Ima mnoštvo primera i slika.
-  Vidite http://iccf-holland.org/click5.html
+  Vidite https://iccf-holland.org/click5.html
 
   Sledeća knjiga je starija i više govori o Vi-u nego o Vim-u, ali je takođe
   preporučujemo:
index b3cd1497a918fe769ba4dd3f96bb4e5ea1b76630..42836a801def753fb759427d48e9d8001cd57609 100644 (file)
@@ -812,7 +812,7 @@ Notera: Detta undviker att beh
        Förlag: New Riders
   Den första boken som är endast behandlar Vim. Speciellt användbar för
   nybörjare. Det finns många exempel och bilder.
-  Se http://iccf-holland.org/click5.html
+  Se https://iccf-holland.org/click5.html
 
   Den här boken är äldre och behandlar mer Vi än Vim, men rekommenderas också:
        Learning the Vi Editor - av Linda Lamb
index 420b22751226b1f9c4eab44c52d8d1eb1786e5a0..c8cacc62404534c819ed06a3196a04d29b7ec423 100644 (file)
@@ -812,7 +812,7 @@ Notera: Detta undviker att behöva skriva  i , det sista tecknet, texten att
        Förlag: New Riders
   Den första boken som är endast behandlar Vim. Speciellt användbar för
   nybörjare. Det finns många exempel och bilder.
-  Se http://iccf-holland.org/click5.html
+  Se https://iccf-holland.org/click5.html
 
   Den här boken är äldre och behandlar mer Vi än Vim, men rekommenderas också:
        Learning the Vi Editor - av Linda Lamb
index aec9141356e1af118c63a316a2db15a41bc73e93..601b54a5839be79265ee1c8b3921984ae61e986d 100644 (file)
@@ -956,7 +956,7 @@ Not: Arama dosyan
   Tümüyle Vim için hazýrlanmýþ ilk kitaptýr. Özellikle ilk kullanýcýlar için
   çok uygundur.
   Kitapta birçok örnek ve resim bulunmaktadýr.
-  http://iccf-holland.org/click5.html adresine bakabilirsiniz.
+  https://iccf-holland.org/click5.html adresine bakabilirsiniz.
 
   Bu kitap daha eskidir ve Vim'den daha çok Vi içindir ancak tavsiye edilir:
 
index e3f157d496cc24126d91db4f43487c6e17509e07..95a7c8094cf7ed352456662fe39c1422f83b8d44 100644 (file)
@@ -956,7 +956,7 @@ Not: Arama dosyanın sonuna ulaştığında dosyanın başından sürecektir. Bu
   Tümüyle Vim için hazırlanmış ilk kitaptır. Özellikle ilk kullanıcılar için
   çok uygundur.
   Kitapta birçok örnek ve resim bulunmaktadır.
-  http://iccf-holland.org/click5.html adresine bakabilirsiniz.
+  https://iccf-holland.org/click5.html adresine bakabilirsiniz.
 
   Bu kitap daha eskidir ve Vim'den daha çok Vi içindir ancak tavsiye edilir:
 
index 5ea49c53fa8e10512811d40b07c8d9b49bc4baa1..541c74fdd890bcda4d88da53a7ada49af3806a61 100644 (file)
         Publisher: New Riders
   Особливо корисна для початківців.
   Там багато прикладів і ілюстрацій.
-  Дивіться http://iccf-holland.org/click5.html
+  Дивіться https://iccf-holland.org/click5.html
 
   Ці уроки були написані Майклом С. Пірсом та Робертом Уаром.
 
index a78e6a4b1a82a39724a12be16b08776f624b8f94..98c41778453ca4653e25616984acf76bef136ea7 100644 (file)
@@ -955,7 +955,7 @@ NOTE:  Completion works for many commands.  Just try pressing CTRL-D and
        Publisher: New Riders
   The first book completely dedicated to Vim.  Especially useful for beginners.
   There are many examples and pictures.
-  See http://iccf-holland.org/click5.html
+  See https://iccf-holland.org/click5.html
 
   This book is older and more about Vi than Vim, but also recommended:
        Learning the Vi Editor - by Linda Lamb
index 34c2db0d973aecfc9750d1a07fb717aa1ca83201..2e967c84c000d0ff3316a7b0067e8bcc6f706906 100644 (file)
@@ -792,7 +792,7 @@ Chú ý: Lệnh này thay cho việc gõ  i , ký tự cuối cùng, văn bản
        Nhà xuất bản: New Riders
   Cuốn sách đầu tiên dành hoàn toàn cho Vim. Đặc biệt có ích cho người mới.
   Có rất nhiều ví dụ và tranh ảnh.
-  Hãy xem: http://iccf-holland.org/click5.html
+  Hãy xem: https://iccf-holland.org/click5.html
 
   Cuốn sách tiếp theo này xuất bản sớm hơn và nói nhiều về Vi hơn là Vim,
   nhưng cũng rất nên đọc:
index 3869b4e69bd2349445099c23fff7fe4e4d704eff..6a4e2cb3bc2ce91a1720dfb80ebca80bb37bb69d 100644 (file)
@@ -805,7 +805,7 @@ Open up a line above this by typing Shift-O while the cursor is on this line.
        ¥Xª©ªÀ¡JNew Riders
 
   ³o¬O²Ä¤@¥»§¹¥þÁ¿¸Ñvimªº®ÑÄy¡C¹ï¤_ªì¾Ç\8eͯS§O¦³¥Î¡C¨ä¤¤ÁÙ¥]§t¦³¤j¶q¹ê¨Ò
-  ©M¹Ï¥Ü¡C±ýª¾¸Ô±¡¡A½Ð³X°Ý http://iccf-holland.org/click5.html
+  ©M¹Ï¥Ü¡C±ýª¾¸Ô±¡¡A½Ð³X°Ý https://iccf-holland.org/click5.html
 
   ¥H¤U³o¥»®Ñ¤ñ¸û¦Ñ¤F¦Ó¥B¤º®e¥D­n¬Ovi¦Ó¤£¬Ovim¡A¦ý¬O¤]­È±o±ÀÂË¡J
 
index 1b51fa621ee0a3183450bb084fdb0e95171e6ee3..16a031a3b940536abda3b56a3a4dcff71154506a 100644 (file)
        ³ö°æÉ磺New Riders
   ÕâÊǵÚÒ»±¾ÍêÈ«½²½â Vim µÄÊé¼®¡£Ëü¶ÔÓÚ³õѧÕßÌرðÓÐÓá£ÆäÖаüº¬ÓдóÁ¿ÊµÀý
   ºÍͼʾ¡£
-  ÓûÖªÏêÇ飬Çë·ÃÎÊ http://iccf-holland.org/click5.html
+  ÓûÖªÏêÇ飬Çë·ÃÎÊ https://iccf-holland.org/click5.html
 
   ÒÔÏÂÕâ±¾Êé±È½ÏÀÏÁ˶øÇÒÄÚÈݸü¶àÊǹØÓÚ Vi ¶ø·Ç Vim£¬µ«ÊÇÒ²ÖµµÃÍƼö£º
        Learning the Vi Editor - ×÷ÕߣºLinda Lamb
index 8e17ae3b59dabfc1abc893b324530fffd3ab1885..fc35259837955534823ee38e308b839ae35f010e 100644 (file)
@@ -805,7 +805,7 @@ Open up a line above this by typing Shift-O while the cursor is on this line.
        出版社︰New Riders
 
   這是第一本完全講解vim的書籍。對于初學者特別有用。其中還包含有大量實例
-  和圖示。欲知詳情,請訪問 http://iccf-holland.org/click5.html
+  和圖示。欲知詳情,請訪問 https://iccf-holland.org/click5.html
 
   以下這本書比較老了而且內容主要是vi而不是vim,但是也值得推薦︰
 
index 085716eb70ed49414868a301545fd72b5d881c88..65a766e2280e5680f7318584c73d76fe5e28bfd8 100644 (file)
        出版社:New Riders
   这是第一本完全讲解 Vim 的书籍。它对于初学者特别有用。其中包含有大量实例
   和图示。
-  欲知详情,请访问 http://iccf-holland.org/click5.html
+  欲知详情,请访问 https://iccf-holland.org/click5.html
 
   以下这本书比较老了而且内容更多是关于 Vi 而非 Vim,但是也值得推荐:
        Learning the Vi Editor - 作者:Linda Lamb
index 8e17ae3b59dabfc1abc893b324530fffd3ab1885..fc35259837955534823ee38e308b839ae35f010e 100644 (file)
@@ -805,7 +805,7 @@ Open up a line above this by typing Shift-O while the cursor is on this line.
        出版社︰New Riders
 
   這是第一本完全講解vim的書籍。對于初學者特別有用。其中還包含有大量實例
-  和圖示。欲知詳情,請訪問 http://iccf-holland.org/click5.html
+  和圖示。欲知詳情,請訪問 https://iccf-holland.org/click5.html
 
   以下這本書比較老了而且內容主要是vi而不是vim,但是也值得推薦︰