From: Bram Moolenaar <Bram@vim.org> Date: Wed, 9 Feb 2022 21:50:44 +0000 (+0000) Subject: Update runtime files X-Git-Tag: v8.2.4338~1 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9da17d7c57071c306565da6a35c3704db1916b78;p=vim Update runtime files --- diff --git a/runtime/doc/autocmd.txt b/runtime/doc/autocmd.txt index c410ae67e..ebb619774 100644 --- a/runtime/doc/autocmd.txt +++ b/runtime/doc/autocmd.txt @@ -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* diff --git a/runtime/doc/builtin.txt b/runtime/doc/builtin.txt index 829959783..299bcba63 100644 --- a/runtime/doc/builtin.txt +++ b/runtime/doc/builtin.txt @@ -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() diff --git a/runtime/doc/if_pyth.txt b/runtime/doc/if_pyth.txt index 79b171642..19b8b67cb 100644 --- a/runtime/doc/if_pyth.txt +++ b/runtime/doc/if_pyth.txt @@ -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: > diff --git a/runtime/doc/index.txt b/runtime/doc/index.txt index c4129ea22..8403baca6 100644 --- a/runtime/doc/index.txt +++ b/runtime/doc/index.txt @@ -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 ":@" diff --git a/runtime/doc/options.txt b/runtime/doc/options.txt index ee2caa753..1d3f76864 100644 --- a/runtime/doc/options.txt +++ b/runtime/doc/options.txt @@ -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 diff --git a/runtime/doc/quickfix.txt b/runtime/doc/quickfix.txt index 6bb259f72..b2b5514e3 100644 --- a/runtime/doc/quickfix.txt +++ b/runtime/doc/quickfix.txt @@ -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 diff --git a/runtime/doc/syntax.txt b/runtime/doc/syntax.txt index a23ac881e..d95278a84 100644 --- a/runtime/doc/syntax.txt +++ b/runtime/doc/syntax.txt @@ -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* diff --git a/runtime/doc/tags b/runtime/doc/tags index a15371e7f..4d80e6077 100644 --- a/runtime/doc/tags +++ b/runtime/doc/tags @@ -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* diff --git a/runtime/doc/todo.txt b/runtime/doc/todo.txt index c74bce671..76bdc171f 100644 --- a/runtime/doc/todo.txt +++ b/runtime/doc/todo.txt @@ -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. diff --git a/runtime/doc/uganda.txt b/runtime/doc/uganda.txt index a71cf030f..6b7b8739c 100644 --- a/runtime/doc/uganda.txt +++ b/runtime/doc/uganda.txt @@ -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 diff --git a/runtime/doc/vim9.txt b/runtime/doc/vim9.txt index afa3239f0..143de797a 100644 --- a/runtime/doc/vim9.txt +++ b/runtime/doc/vim9.txt @@ -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* diff --git a/runtime/ftplugin.vim b/runtime/ftplugin.vim index 645f8c3e6..9109a6e45 100644 --- a/runtime/ftplugin.vim +++ b/runtime/ftplugin.vim @@ -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 diff --git a/runtime/ftplugof.vim b/runtime/ftplugof.vim index 7828ff2c1..e0505ce62 100644 --- a/runtime/ftplugof.vim +++ b/runtime/ftplugof.vim @@ -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 diff --git a/runtime/menu.vim b/runtime/menu.vim index 0a2bd1fb0..12924af6f 100644 --- a/runtime/menu.vim +++ b/runtime/menu.vim @@ -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") diff --git a/runtime/syntax/vim.vim b/runtime/syntax/vim.vim index ae70087a0..e42c270e9 100644 --- a/runtime/syntax/vim.vim +++ b/runtime/syntax/vim.vim @@ -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 diff --git a/runtime/tutor/tutor b/runtime/tutor/tutor index a78e6a4b1..98c417784 100644 --- a/runtime/tutor/tutor +++ b/runtime/tutor/tutor @@ -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 diff --git a/runtime/tutor/tutor.bar b/runtime/tutor/tutor.bar index dd23fa08c..ec30eddaf 100644 --- a/runtime/tutor/tutor.bar +++ b/runtime/tutor/tutor.bar @@ -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 diff --git a/runtime/tutor/tutor.bar.utf-8 b/runtime/tutor/tutor.bar.utf-8 index ffae8a02e..42bea0eac 100644 --- a/runtime/tutor/tutor.bar.utf-8 +++ b/runtime/tutor/tutor.bar.utf-8 @@ -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 diff --git a/runtime/tutor/tutor.bg.utf-8 b/runtime/tutor/tutor.bg.utf-8 index 9599ffd31..325ed784e 100644 --- a/runtime/tutor/tutor.bg.utf-8 +++ b/runtime/tutor/tutor.bg.utf-8 @@ -1017,7 +1017,7 @@ ÐздаÑел: New Riders Това е пÑÑваÑа книга, изÑÑло поÑвеÑена на Vim. ÐÑобено полезна е за наÑинаеÑи. Ð Ð½ÐµÑ Ñе намеÑиÑе много пÑимеÑи и каÑÑинки. - ÐижÑе http://iccf-holland.org/click5.html + ÐижÑе https://iccf-holland.org/click5.html СледнаÑа книга е по-ÑÑаÑа и по-ÑкоÑо за Vi оÑколкоÑо за Vim, но ÑÑÑо Ñе пÑепоÑÑÑва: Learning the Vi Editor - Ð¾Ñ Linda Lamb diff --git a/runtime/tutor/tutor.ca b/runtime/tutor/tutor.ca index 2501c4716..808a87d61 100644 --- a/runtime/tutor/tutor.ca +++ b/runtime/tutor/tutor.ca @@ -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 diff --git a/runtime/tutor/tutor.ca.utf-8 b/runtime/tutor/tutor.ca.utf-8 index 18de0123d..f39154b80 100644 --- a/runtime/tutor/tutor.ca.utf-8 +++ b/runtime/tutor/tutor.ca.utf-8 @@ -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 diff --git a/runtime/tutor/tutor.cs b/runtime/tutor/tutor.cs index a301ddc10..6d62bb583 100644 --- a/runtime/tutor/tutor.cs +++ b/runtime/tutor/tutor.cs @@ -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 diff --git a/runtime/tutor/tutor.cs.cp1250 b/runtime/tutor/tutor.cs.cp1250 index 8056db8d9..26567db91 100644 --- a/runtime/tutor/tutor.cs.cp1250 +++ b/runtime/tutor/tutor.cs.cp1250 @@ -791,7 +791,7 @@ Pozn Nakladatel: New Riders První kniha urèená pro Vim. Obzvlátì vhodná pro zaèáteèníky. Obsahuje mnoství 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 diff --git a/runtime/tutor/tutor.cs.utf-8 b/runtime/tutor/tutor.cs.utf-8 index c850b9882..36bb3a2d0 100644 --- a/runtime/tutor/tutor.cs.utf-8 +++ b/runtime/tutor/tutor.cs.utf-8 @@ -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 diff --git a/runtime/tutor/tutor.da b/runtime/tutor/tutor.da index 77af092f1..ba62fce53 100644 --- a/runtime/tutor/tutor.da +++ b/runtime/tutor/tutor.da @@ -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 diff --git a/runtime/tutor/tutor.da.utf-8 b/runtime/tutor/tutor.da.utf-8 index 83071760c..dad3ea8a7 100644 --- a/runtime/tutor/tutor.da.utf-8 +++ b/runtime/tutor/tutor.da.utf-8 @@ -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 diff --git a/runtime/tutor/tutor.de b/runtime/tutor/tutor.de index ce1242dff..599fdc7b6 100644 --- a/runtime/tutor/tutor.de +++ b/runtime/tutor/tutor.de @@ -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 diff --git a/runtime/tutor/tutor.de.utf-8 b/runtime/tutor/tutor.de.utf-8 index 0ae2a1996..9a5b592d9 100644 --- a/runtime/tutor/tutor.de.utf-8 +++ b/runtime/tutor/tutor.de.utf-8 @@ -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 diff --git a/runtime/tutor/tutor.el b/runtime/tutor/tutor.el index 8b4fd900b..9a2fd98c6 100644 --- a/runtime/tutor/tutor.el +++ b/runtime/tutor/tutor.el @@ -796,7 +796,7 @@ Ôï ðñþôï âéâëßï ðëÞñùò áöéåñùìÝíï óôïí Vim. Éäéáßôåñá ÷ñÞóéìï ãéá áñ÷Üñéïõò. ÕðÜñ÷ïõí ðïëëÜ ðáñáäåßãìáôá êáé åéêüíåò. - Äåßôå ôçí http://iccf-holland.org/click5.html + Äåßôå ôçí https://iccf-holland.org/click5.html Áõôü ôï âéâëßï åßíáé ðáëéüôåñï êáé ðåñéóóüôåñï ãéá ôïí Vi ðáñÜ ãéá ôïí Vim, áëëÜ åðßóçò óõíéóôþìåíï: diff --git a/runtime/tutor/tutor.el.cp737 b/runtime/tutor/tutor.el.cp737 index 6dd173d74..64833444b 100644 --- a/runtime/tutor/tutor.el.cp737 +++ b/runtime/tutor/tutor.el.cp737 @@ -796,7 +796,7 @@ ¦ §¨é«¦ ¢å¦ §¢ã¨àª ¨à£â¤¦ ©«¦¤ Vim. 嫨 ®¨ã© £¦ ¨®á¨ ¦¬ª. §á¨®¦¬¤ §¦¢¢á §¨å£« ¡ ¡æ¤ª. - å« «¤ http://iccf-holland.org/click5.html + å« «¤ https://iccf-holland.org/click5.html ¬«æ «¦ ¢å¦ å¤ §¢ 櫨¦ ¡ §¨ ©©æ«¨¦ «¦¤ Vi §¨á «¦¤ Vim, ¢¢á §å©ª ©¬¤ ©«é£¤¦: diff --git a/runtime/tutor/tutor.el.utf-8 b/runtime/tutor/tutor.el.utf-8 index 67713000a..7cb974129 100644 --- a/runtime/tutor/tutor.el.utf-8 +++ b/runtime/tutor/tutor.el.utf-8 @@ -796,7 +796,7 @@ Το ÏÏÏÏο βιβλίο ÏλήÏÏÏ Î±ÏιεÏÏμÎνο ÏÏον Vim. ÎδιαίÏεÏα ÏÏήÏιμο για αÏÏάÏÎ¹Î¿Ï Ï. Î¥ÏάÏÏÎ¿Ï Î½ Ïολλά ÏαÏαδείγμαÏα και εικÏνεÏ. - ÎείÏε Ïην http://iccf-holland.org/click5.html + ÎείÏε Ïην https://iccf-holland.org/click5.html ÎÏ ÏÏ Ïο βιβλίο είναι ÏαλιÏÏεÏο και ÏεÏιÏÏÏÏεÏο για Ïον Vi ÏαÏά για Ïον Vim, αλλά εÏίÏÎ·Ï ÏÏ Î½Î¹ÏÏÏμενο: diff --git a/runtime/tutor/tutor.hr b/runtime/tutor/tutor.hr index 386b8d744..fced37437 100644 --- a/runtime/tutor/tutor.hr +++ b/runtime/tutor/tutor.hr @@ -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 diff --git a/runtime/tutor/tutor.hr.cp1250 b/runtime/tutor/tutor.hr.cp1250 index 0bde07870..f968053b2 100644 --- a/runtime/tutor/tutor.hr.cp1250 +++ b/runtime/tutor/tutor.hr.cp1250 @@ -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 neto starija i vie o Vi-u nego o Vim-u, preporuèamo: Learning the Vi Editor - by Linda Lamb diff --git a/runtime/tutor/tutor.hr.utf-8 b/runtime/tutor/tutor.hr.utf-8 index 91be19c91..291def020 100644 --- a/runtime/tutor/tutor.hr.utf-8 +++ b/runtime/tutor/tutor.hr.utf-8 @@ -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 diff --git a/runtime/tutor/tutor.hu b/runtime/tutor/tutor.hu index ca47b3f9b..d895e1974 100644 --- a/runtime/tutor/tutor.hu +++ b/runtime/tutor/tutor.hu @@ -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 diff --git a/runtime/tutor/tutor.hu.cp1250 b/runtime/tutor/tutor.hu.cp1250 index ca47b3f9b..d895e1974 100644 --- a/runtime/tutor/tutor.hu.cp1250 +++ b/runtime/tutor/tutor.hu.cp1250 @@ -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 diff --git a/runtime/tutor/tutor.hu.utf-8 b/runtime/tutor/tutor.hu.utf-8 index 5e39c95ac..f2e0d403c 100644 --- a/runtime/tutor/tutor.hu.utf-8 +++ b/runtime/tutor/tutor.hu.utf-8 @@ -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 diff --git a/runtime/tutor/tutor.it b/runtime/tutor/tutor.it index 96191e047..ce3b9707b 100644 --- a/runtime/tutor/tutor.it +++ b/runtime/tutor/tutor.it @@ -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 diff --git a/runtime/tutor/tutor.it.utf-8 b/runtime/tutor/tutor.it.utf-8 index 0c53690d4..d1f62e277 100644 --- a/runtime/tutor/tutor.it.utf-8 +++ b/runtime/tutor/tutor.it.utf-8 @@ -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 diff --git a/runtime/tutor/tutor.ja.euc b/runtime/tutor/tutor.ja.euc index 3b41337f9..92e040db3 100644 --- a/runtime/tutor/tutor.ja.euc +++ b/runtime/tutor/tutor.ja.euc @@ -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 diff --git a/runtime/tutor/tutor.ja.sjis b/runtime/tutor/tutor.ja.sjis index 451745bee..ab463801c 100644 --- a/runtime/tutor/tutor.ja.sjis +++ b/runtime/tutor/tutor.ja.sjis @@ -955,7 +955,7 @@ NOTE: oÅÐ: New Riders ÅÌ{Í®SÉ Vim ̽ßÉ©êܵ½BÆèí¯SÒÉͨ§ßÅ·B ½Ìáèâ}ŪfÚ³êĢܷB - ÌURLðQƵĺ³¢ http://iccf-holland.org/click5.html + ÌURLðQƵĺ³¢ https://iccf-holland.org/click5.html Í Vim æèà Vi É¢ĩê½Ã¢{Å·ªEµÜ·: Learning the Vi Editor - by Linda Lamb diff --git a/runtime/tutor/tutor.ja.utf-8 b/runtime/tutor/tutor.ja.utf-8 index 263223337..8eaa72cf0 100644 --- a/runtime/tutor/tutor.ja.utf-8 +++ b/runtime/tutor/tutor.ja.utf-8 @@ -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 diff --git a/runtime/tutor/tutor.ko b/runtime/tutor/tutor.ko index 7146c9907..993c43de8 100644 --- a/runtime/tutor/tutor.ko +++ b/runtime/tutor/tutor.ko @@ -949,7 +949,7 @@ ce ë ë¨ì´ë¥¼ ì¹ííë ê² ë¿ë§ ìëë¼, ë´ì©ì ì½ì í ì ì ì¶íì¬: New Riders ì´ ì± ì ìì í ë¹ì ëí´ìë§ ë¤ë£¨ê³ ììµëë¤. í¹í ì´ë³´ìë¤ìê² ì ì©í©ëë¤. ë§ì ìì ì ê·¸ë¦¼ì´ ììµëë¤. - ë¤ìì ì°¸ê³ íììì¤: http://iccf-holland.org/click5.html + ë¤ìì ì°¸ê³ íììì¤: https://iccf-holland.org/click5.html ë¤ì ì± ì ì¢ ì¤ëë ì± ì¼ë¡ ë¹ë³´ë¤ë Viì ëí´ ë¤ë£¨ê³ ìì§ë§, ìì ì¶ì²í ë§ í©ëë¤: diff --git a/runtime/tutor/tutor.ko.euc b/runtime/tutor/tutor.ko.euc index 2e1a3d03f..b93bb3be3 100644 --- a/runtime/tutor/tutor.ko.euc +++ b/runtime/tutor/tutor.ko.euc @@ -949,7 +949,7 @@ ce ÃâÆÇ»ç: New Riders ÀÌ Ã¥Àº ¿ÏÀüÈ÷ ºö¿¡ ´ëÇؼ¸¸ ´Ù·ç°í ÀÖ½À´Ï´Ù. ƯÈ÷ Ãʺ¸Àڵ鿡°Ô À¯¿ëÇÕ´Ï´Ù. ¸¹Àº ¿¹Á¦¿Í ±×¸²ÀÌ ÀÖ½À´Ï´Ù. - ´ÙÀ½À» Âü°íÇϽʽÿÀ: http://iccf-holland.org/click5.html + ´ÙÀ½À» Âü°íÇϽʽÿÀ: https://iccf-holland.org/click5.html ´ÙÀ½ Ã¥Àº Á» ¿À·¡µÈ Ã¥À¸·Î ºöº¸´Ù´Â Vi¿¡ ´ëÇØ ´Ù·ç°í ÀÖÁö¸¸, ¿ª½Ã ÃßõÇÒ ¸¸ ÇÕ´Ï´Ù: diff --git a/runtime/tutor/tutor.ko.utf-8 b/runtime/tutor/tutor.ko.utf-8 index 7146c9907..993c43de8 100644 --- a/runtime/tutor/tutor.ko.utf-8 +++ b/runtime/tutor/tutor.ko.utf-8 @@ -949,7 +949,7 @@ ce ë ë¨ì´ë¥¼ ì¹ííë ê² ë¿ë§ ìëë¼, ë´ì©ì ì½ì í ì ì ì¶íì¬: New Riders ì´ ì± ì ìì í ë¹ì ëí´ìë§ ë¤ë£¨ê³ ììµëë¤. í¹í ì´ë³´ìë¤ìê² ì ì©í©ëë¤. ë§ì ìì ì ê·¸ë¦¼ì´ ììµëë¤. - ë¤ìì ì°¸ê³ íììì¤: http://iccf-holland.org/click5.html + ë¤ìì ì°¸ê³ íììì¤: https://iccf-holland.org/click5.html ë¤ì ì± ì ì¢ ì¤ëë ì± ì¼ë¡ ë¹ë³´ë¤ë Viì ëí´ ë¤ë£¨ê³ ìì§ë§, ìì ì¶ì²í ë§ í©ëë¤: diff --git a/runtime/tutor/tutor.lv.utf-8 b/runtime/tutor/tutor.lv.utf-8 index 91f402a60..e1ca778d0 100644 --- a/runtime/tutor/tutor.lv.utf-8 +++ b/runtime/tutor/tutor.lv.utf-8 @@ -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: diff --git a/runtime/tutor/tutor.nb b/runtime/tutor/tutor.nb index cad3eb666..9eb6dfa93 100644 --- a/runtime/tutor/tutor.nb +++ b/runtime/tutor/tutor.nb @@ -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 diff --git a/runtime/tutor/tutor.nb.utf-8 b/runtime/tutor/tutor.nb.utf-8 index f07c535ac..6a8a4e946 100644 --- a/runtime/tutor/tutor.nb.utf-8 +++ b/runtime/tutor/tutor.nb.utf-8 @@ -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 diff --git a/runtime/tutor/tutor.nl b/runtime/tutor/tutor.nl index bcb8e5214..eb5414d2d 100644 --- a/runtime/tutor/tutor.nl +++ b/runtime/tutor/tutor.nl @@ -927,7 +927,7 @@ 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: diff --git a/runtime/tutor/tutor.nl.utf-8 b/runtime/tutor/tutor.nl.utf-8 index 716599559..1f4be70fe 100644 --- a/runtime/tutor/tutor.nl.utf-8 +++ b/runtime/tutor/tutor.nl.utf-8 @@ -927,7 +927,7 @@ 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: diff --git a/runtime/tutor/tutor.no b/runtime/tutor/tutor.no index cad3eb666..9eb6dfa93 100644 --- a/runtime/tutor/tutor.no +++ b/runtime/tutor/tutor.no @@ -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 diff --git a/runtime/tutor/tutor.no.utf-8 b/runtime/tutor/tutor.no.utf-8 index f07c535ac..6a8a4e946 100644 --- a/runtime/tutor/tutor.no.utf-8 +++ b/runtime/tutor/tutor.no.utf-8 @@ -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 diff --git a/runtime/tutor/tutor.pl b/runtime/tutor/tutor.pl index 84fa65d21..e68343156 100644 --- a/runtime/tutor/tutor.pl +++ b/runtime/tutor/tutor.pl @@ -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: diff --git a/runtime/tutor/tutor.pl.cp1250 b/runtime/tutor/tutor.pl.cp1250 index 8c70d65a5..129f8ec4f 100644 --- a/runtime/tutor/tutor.pl.cp1250 +++ b/runtime/tutor/tutor.pl.cp1250 @@ -954,7 +954,7 @@ UWAGA: Uzupe Wydawca: New Riders Pierwsza ksi¹¿ka ca³kowicie powiê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: diff --git a/runtime/tutor/tutor.pl.utf-8 b/runtime/tutor/tutor.pl.utf-8 index 55b8af9a0..7856837b6 100644 --- a/runtime/tutor/tutor.pl.utf-8 +++ b/runtime/tutor/tutor.pl.utf-8 @@ -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: diff --git a/runtime/tutor/tutor.pt b/runtime/tutor/tutor.pt index 7d5cc6dcb..5735c09dc 100644 --- a/runtime/tutor/tutor.pt +++ b/runtime/tutor/tutor.pt @@ -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: diff --git a/runtime/tutor/tutor.pt.utf-8 b/runtime/tutor/tutor.pt.utf-8 index a60584896..9d8e75886 100644 --- a/runtime/tutor/tutor.pt.utf-8 +++ b/runtime/tutor/tutor.pt.utf-8 @@ -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: diff --git a/runtime/tutor/tutor.ru b/runtime/tutor/tutor.ru index 3abaeb232..d1b5fd6bf 100644 --- a/runtime/tutor/tutor.ru +++ b/runtime/tutor/tutor.ru @@ -980,7 +980,7 @@ üÔÁ ËÎÉÇÁ ÐÏÌÎÏÓÔØÀ ÐÏÓ×ÑÝÅÎÁ Vim. ïÓÏÂÅÎÎÏ ÐÏÌÅÚÎÁ ÏÎÁ ÂÕÄÅÔ ÎÏ×ÉÞËÁÍ. óÏÄÅÒÖÉÔ ÍÎÏÖÅÓÔ×Ï ÐÒÉÍÅÒÏ× É ÉÌÌÀÓÔÒÁÃÉÊ. - óÍ. http://iccf-holland.org/click5.html + óÍ. https://iccf-holland.org/click5.html óÌÅÄÕÀÝÁÑ ËÎÉÇÁ ÂÏÌÅÅ ÐÏÞÔÅÎÎÏÇÏ ×ÏÚÒÁÓÔÁ É ÐÏÓ×ÑÝÅÎÁ ÂÏÌØÛÅ Vi, ÞÅÍ Vim, ÏÄÎÁËÏ ÔÁËÖÅ ÒÅËÏÍÅÎÄÕÅÔÓÑ: diff --git a/runtime/tutor/tutor.ru.cp1251 b/runtime/tutor/tutor.ru.cp1251 index af0dccc70..4493f0ee3 100644 --- a/runtime/tutor/tutor.ru.cp1251 +++ b/runtime/tutor/tutor.ru.cp1251 @@ -980,7 +980,7 @@ Ýòà êíèãà ïîëíîñòüþ ïîñâÿùåíà Vim. Îñîáåííî ïîëåçíà îíà áóäåò íîâè÷êàì. Ñîäåðæèò ìíîæåñòâî ïðèìåðîâ è èëëþñòðàöèé. - Ñì. http://iccf-holland.org/click5.html + Ñì. https://iccf-holland.org/click5.html Ñëåäóþùàÿ êíèãà áîëåå ïî÷òåííîãî âîçðàñòà è ïîñâÿùåíà áîëüøå Vi, ÷åì Vim, îäíàêî òàêæå ðåêîìåíäóåòñÿ: diff --git a/runtime/tutor/tutor.ru.utf-8 b/runtime/tutor/tutor.ru.utf-8 index b2d9fa4a8..0c13f5d4b 100644 --- a/runtime/tutor/tutor.ru.utf-8 +++ b/runtime/tutor/tutor.ru.utf-8 @@ -980,7 +980,7 @@ ÐÑа книга полноÑÑÑÑ Ð¿Ð¾ÑвÑÑена Vim. ÐÑобенно полезна она бÑÐ´ÐµÑ Ð½Ð¾Ð²Ð¸Ñкам. СодеÑÐ¶Ð¸Ñ Ð¼Ð½Ð¾Ð¶ÐµÑÑво пÑимеÑов и иллÑÑÑÑаÑий. - См. http://iccf-holland.org/click5.html + См. https://iccf-holland.org/click5.html СледÑÑÑÐ°Ñ ÐºÐ½Ð¸Ð³Ð° более поÑÑенного возÑаÑÑа и поÑвÑÑена болÑÑе Vi, Ñем Vim, однако Ñакже ÑекомендÑеÑÑÑ: diff --git a/runtime/tutor/tutor.sk b/runtime/tutor/tutor.sk index 7022db6eb..35b04c804 100644 --- a/runtime/tutor/tutor.sk +++ b/runtime/tutor/tutor.sk @@ -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 diff --git a/runtime/tutor/tutor.sk.cp1250 b/runtime/tutor/tutor.sk.cp1250 index e120ce15e..a1aee207c 100644 --- a/runtime/tutor/tutor.sk.cp1250 +++ b/runtime/tutor/tutor.sk.cp1250 @@ -986,7 +986,7 @@ POZN Vydavate¾: New Riders Prvá kniha urèená pre Vim. peciálne vhodná pre zaèiatoèníkov. Obsahuje mnostvo 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 staria a je viac o Vi ako o Vim, ale je tie odporúèaná: Learning the Vi Editor - od Linda Lamb diff --git a/runtime/tutor/tutor.sk.utf-8 b/runtime/tutor/tutor.sk.utf-8 index c8acd0ca8..d25e9cbfe 100644 --- a/runtime/tutor/tutor.sk.utf-8 +++ b/runtime/tutor/tutor.sk.utf-8 @@ -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 diff --git a/runtime/tutor/tutor.sr.cp1250 b/runtime/tutor/tutor.sr.cp1250 index 18f44fa59..c4d0064cd 100644 --- a/runtime/tutor/tutor.sr.cp1250 +++ b/runtime/tutor/tutor.sr.cp1250 @@ -951,7 +951,7 @@ NAPOMENA: Mogu Izdavaè: New Riders Prva knjiga potpuno posveæena Vim-u. Naroèito korisna za poèetnike. Ima mnotvo primera i slika. - Vidite http://iccf-holland.org/click5.html + Vidite https://iccf-holland.org/click5.html Sledeæa knjiga je starija i vie govori o Vi-u nego o Vim-u, ali je takoðe preporuèujemo: diff --git a/runtime/tutor/tutor.sr.utf-8 b/runtime/tutor/tutor.sr.utf-8 index a237dccae..5bad8483c 100644 --- a/runtime/tutor/tutor.sr.utf-8 +++ b/runtime/tutor/tutor.sr.utf-8 @@ -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: diff --git a/runtime/tutor/tutor.sv b/runtime/tutor/tutor.sv index b3cd1497a..42836a801 100644 --- a/runtime/tutor/tutor.sv +++ b/runtime/tutor/tutor.sv @@ -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 diff --git a/runtime/tutor/tutor.sv.utf-8 b/runtime/tutor/tutor.sv.utf-8 index 420b22751..c8cacc624 100644 --- a/runtime/tutor/tutor.sv.utf-8 +++ b/runtime/tutor/tutor.sv.utf-8 @@ -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 diff --git a/runtime/tutor/tutor.tr.iso9 b/runtime/tutor/tutor.tr.iso9 index aec914135..601b54a58 100644 --- a/runtime/tutor/tutor.tr.iso9 +++ b/runtime/tutor/tutor.tr.iso9 @@ -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: diff --git a/runtime/tutor/tutor.tr.utf-8 b/runtime/tutor/tutor.tr.utf-8 index e3f157d49..95a7c8094 100644 --- a/runtime/tutor/tutor.tr.utf-8 +++ b/runtime/tutor/tutor.tr.utf-8 @@ -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: diff --git a/runtime/tutor/tutor.uk.utf-8 b/runtime/tutor/tutor.uk.utf-8 index 5ea49c53f..541c74fdd 100644 --- a/runtime/tutor/tutor.uk.utf-8 +++ b/runtime/tutor/tutor.uk.utf-8 @@ -965,7 +965,7 @@ Publisher: New Riders ÐÑобливо коÑиÑна Ð´Ð»Ñ Ð¿Ð¾ÑаÑкÑвÑÑв. Там багаÑо пÑикладÑв Ñ ÑлÑÑÑÑаÑÑй. - ÐивÑÑÑÑÑ http://iccf-holland.org/click5.html + ÐивÑÑÑÑÑ https://iccf-holland.org/click5.html Ð¦Ñ ÑÑоки бÑли напиÑÐ°Ð½Ñ Ðайклом С. ÐÑÑÑом Ñа РобеÑÑом УаÑом. diff --git a/runtime/tutor/tutor.utf-8 b/runtime/tutor/tutor.utf-8 index a78e6a4b1..98c417784 100644 --- a/runtime/tutor/tutor.utf-8 +++ b/runtime/tutor/tutor.utf-8 @@ -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 diff --git a/runtime/tutor/tutor.vi.utf-8 b/runtime/tutor/tutor.vi.utf-8 index 34c2db0d9..2e967c84c 100644 --- a/runtime/tutor/tutor.vi.utf-8 +++ b/runtime/tutor/tutor.vi.utf-8 @@ -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: diff --git a/runtime/tutor/tutor.zh.big5 b/runtime/tutor/tutor.zh.big5 index 3869b4e69..6a4e2cb3b 100644 --- a/runtime/tutor/tutor.zh.big5 +++ b/runtime/tutor/tutor.zh.big5 @@ -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¹ï¤_ªì¾Çͯ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¥Dn¬Ovi¦Ó¤£¬Ovim¡A¦ý¬O¤]ȱo±ÀÂË¡J diff --git a/runtime/tutor/tutor.zh.euc b/runtime/tutor/tutor.zh.euc index 1b51fa621..16a031a3b 100644 --- a/runtime/tutor/tutor.zh.euc +++ b/runtime/tutor/tutor.zh.euc @@ -953,7 +953,7 @@ ³ö°æÉ磺New Riders ÕâÊǵÚÒ»±¾ÍêÈ«½²½â Vim µÄÊé¼®¡£Ëü¶ÔÓÚ³õѧÕßÌرðÓÐÓá£ÆäÖаüº¬ÓдóÁ¿ÊµÀý ºÍͼʾ¡£ - ÓûÖªÏêÇ飬Çë·ÃÎÊ http://iccf-holland.org/click5.html + ÓûÖªÏêÇ飬Çë·ÃÎÊ https://iccf-holland.org/click5.html ÒÔÏÂÕâ±¾Êé±È½ÏÀÏÁ˶øÇÒÄÚÈݸü¶àÊǹØÓÚ Vi ¶ø·Ç Vim£¬µ«ÊÇÒ²ÖµµÃÍƼö£º Learning the Vi Editor - ×÷ÕߣºLinda Lamb diff --git a/runtime/tutor/tutor.zh.utf-8 b/runtime/tutor/tutor.zh.utf-8 index 8e17ae3b5..fc3525983 100644 --- a/runtime/tutor/tutor.zh.utf-8 +++ b/runtime/tutor/tutor.zh.utf-8 @@ -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ï¼ä½æ¯ä¹å¼å¾æ¨è¦ï¸° diff --git a/runtime/tutor/tutor.zh_cn.utf-8 b/runtime/tutor/tutor.zh_cn.utf-8 index 085716eb7..65a766e22 100644 --- a/runtime/tutor/tutor.zh_cn.utf-8 +++ b/runtime/tutor/tutor.zh_cn.utf-8 @@ -953,7 +953,7 @@ åºç社ï¼New Riders è¿æ¯ç¬¬ä¸æ¬å®å ¨è®²è§£ Vim ç书ç±ãå®å¯¹äºåå¦è ç¹å«æç¨ãå ¶ä¸å å«æ大éå®ä¾ åå¾ç¤ºã - 欲ç¥è¯¦æ ï¼è¯·è®¿é® http://iccf-holland.org/click5.html + 欲ç¥è¯¦æ ï¼è¯·è®¿é® https://iccf-holland.org/click5.html 以ä¸è¿æ¬ä¹¦æ¯è¾èäºèä¸å 容æ´å¤æ¯å ³äº Vi èé Vimï¼ä½æ¯ä¹å¼å¾æ¨èï¼ Learning the Vi Editor - ä½è ï¼Linda Lamb diff --git a/runtime/tutor/tutor.zh_tw.utf-8 b/runtime/tutor/tutor.zh_tw.utf-8 index 8e17ae3b5..fc3525983 100644 --- a/runtime/tutor/tutor.zh_tw.utf-8 +++ b/runtime/tutor/tutor.zh_tw.utf-8 @@ -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ï¼ä½æ¯ä¹å¼å¾æ¨è¦ï¸°