vim-patch:1c5728e0c4a9 (#28703)

runtime(doc): update and remove  some invalid links

closes: vim/vim#14748

1c5728e0c4

Co-authored-by: Christian Brabandt <cb@256bit.org>
This commit is contained in:
zeertzjq 2024-05-11 18:14:03 +08:00 committed by GitHub
parent 14693353d5
commit 7a03cd1dba
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 12 additions and 14 deletions

View File

@ -2029,11 +2029,7 @@ passwords:
better way to do that: I can use a regular ssh account which uses a better way to do that: I can use a regular ssh account which uses a
password to access the material without the need to key-in the password password to access the material without the need to key-in the password
each time. It's good for security and convenience. I tried ssh public key each time. It's good for security and convenience. I tried ssh public key
authorization + ssh-agent, implementing this, and it works! Here are two authorization + ssh-agent, implementing this, and it works!
links with instructions:
http://www.ibm.com/developerworks/library/l-keyc2/
http://sial.org/howto/openssh/publickey-auth/
Ssh hints: Ssh hints:

View File

@ -147,7 +147,8 @@ Copyright 2005-2017: *tar-copyright*
v2 * converted to use Vim7's new autoload feature v2 * converted to use Vim7's new autoload feature
by Bram Moolenaar by Bram Moolenaar
v1 (original) * Michael Toren v1 (original) * Michael Toren
(see http://michael.toren.net/code/) (see http://michael.toren.net/code/
link seems dead)
============================================================================== ==============================================================================
vim:tw=78:ts=8:noet:ft=help vim:tw=78:ts=8:noet:ft=help

View File

@ -1014,9 +1014,9 @@ Two syntax highlighting files exist for Euphoria. One for Euphoria
version 3.1.1, which is the default syntax highlighting file, and one for version 3.1.1, which is the default syntax highlighting file, and one for
Euphoria version 4.0.5 or later. Euphoria version 4.0.5 or later.
Euphoria version 3.1.1 (https://www.rapideuphoria.com/) is still necessary Euphoria version 3.1.1 (https://www.rapideuphoria.com/ link seems dead) is
for developing applications for the DOS platform, which Euphoria version 4 still necessary for developing applications for the DOS platform, which
(https://www.openeuphoria.org/) does not support. Euphoria version 4 (https://www.openeuphoria.org/) does not support.
The following file extensions are auto-detected as Euphoria file type: > The following file extensions are auto-detected as Euphoria file type: >
@ -1073,7 +1073,8 @@ Elixir.
FLEXWIKI *flexwiki.vim* *ft-flexwiki-syntax* FLEXWIKI *flexwiki.vim* *ft-flexwiki-syntax*
FlexWiki is an ASP.NET-based wiki package available at https://www.flexwiki.com FlexWiki is an ASP.NET-based wiki package available at
https://www.flexwiki.com
NOTE: This site currently doesn't work, on Wikipedia is mentioned that NOTE: This site currently doesn't work, on Wikipedia is mentioned that
development stopped in 2009. development stopped in 2009.

View File

@ -85,7 +85,7 @@ The Vim user manual and reference manual are Copyright (c) 1988 by Bram
Moolenaar. This material may be distributed only subject to the terms and Moolenaar. This material may be distributed only subject to the terms and
conditions set forth in the Open Publication License, v1.0 or later. The conditions set forth in the Open Publication License, v1.0 or later. The
latest version is presently available at: latest version is presently available at:
https://www.opencontent.org/openpub/ https://opencontent.org/openpub/
People who contribute to the manuals must agree with the above copyright People who contribute to the manuals must agree with the above copyright
notice. notice.

View File

@ -12,11 +12,11 @@ func Test_check_URLs()
else else
let s:outdev = '/dev/null' let s:outdev = '/dev/null'
endif endif
" Restorer: For Windows users. If "curl" or "weget" is installed on the system " Restorer: For Windows users. If "curl" or "wget" is installed on the system
" but not in %PATH%, add the full routes for them to this environment variable. " but not in %PATH%, add the full path to them to %PATH% environment variable.
if executable('curl') if executable('curl')
" Note: does not follow redirects! " Note: does not follow redirects!
let s:command1 = 'curl --silent --fail --output ' ..s:outdev.. ' --head ' let s:command1 = 'curl --silent --max-time 5 --fail --output ' ..s:outdev.. ' --head '
let s:command2 = "" let s:command2 = ""
elseif executable('wget') elseif executable('wget')
" Note: only allow a couple of redirects " Note: only allow a couple of redirects