vim-patch:32d6bd6: runtime(doc): remove dead links (#35297)

related: vim/vim#17879

32d6bd6df2

N/A patch:
vim-patch:8b18345: runtime(doc): Fix 2 minor issues after 32d6bd6df

Co-authored-by: Damien Lejay <damien@lejay.be>
This commit is contained in:
zeertzjq
2025-08-11 08:04:30 +08:00
committed by GitHub
parent d2cdfc413b
commit 03c953008c
6 changed files with 8 additions and 10 deletions

View File

@@ -412,7 +412,7 @@ Here are some examples of the entries which are pulled from the syntax files: >
Dynamic mode populates the popups with data directly from a database. In Dynamic mode populates the popups with data directly from a database. In
order for the dynamic feature to be enabled you must have the dbext.vim order for the dynamic feature to be enabled you must have the dbext.vim
plugin installed, (https://vim.sourceforge.net/script.php?script_id=356). plugin installed, (https://www.vim.org/scripts/script.php?script_id=356).
Dynamic mode is used by several features of the SQL completion plugin. Dynamic mode is used by several features of the SQL completion plugin.
After installing the dbext plugin see the dbext-tutorial for additional After installing the dbext plugin see the dbext-tutorial for additional
@@ -496,7 +496,7 @@ depending on the syntax file you are using. The SQL Anywhere syntax file
Dynamic features ~ Dynamic features ~
To take advantage of the dynamic features you must first install the To take advantage of the dynamic features you must first install the
dbext.vim plugin (https://vim.sourceforge.net/script.php?script_id=356). It dbext.vim plugin (https://www.vim.org/scripts/script.php?script_id=356). It
also comes with a tutorial. From the SQL completion plugin's perspective, also comes with a tutorial. From the SQL completion plugin's perspective,
the main feature dbext provides is a connection to a database. dbext the main feature dbext provides is a connection to a database. dbext
connection profiles are the most efficient mechanism to define connection connection profiles are the most efficient mechanism to define connection

View File

@@ -156,7 +156,7 @@ 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 michael.toren.net/code/
link seems dead) link seems dead)
============================================================================== ==============================================================================

View File

@@ -1152,7 +1152,7 @@ Elixir.
FLEXWIKI *flexwiki.vim* *ft-flexwiki-syntax* FLEXWIKI *flexwiki.vim* *ft-flexwiki-syntax*
FlexWiki is an ASP.NET-based wiki package available at FlexWiki is an ASP.NET-based wiki package available at
https://www.flexwiki.com 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

@@ -1930,9 +1930,6 @@ passwords:
Thomer Gil has provided a hint on how to speed up netrw+ssh: Thomer Gil has provided a hint on how to speed up netrw+ssh:
http://thomer.com/howtos/netrw_ssh.html http://thomer.com/howtos/netrw_ssh.html
Alex Young has several hints on speeding ssh up:
http://usevim.com/2012/03/16/editing-remote-files/
LISTING BOOKMARKS AND HISTORY *netrw-qb* *netrw-listbookmark* {{{2 LISTING BOOKMARKS AND HISTORY *netrw-qb* *netrw-listbookmark* {{{2

View File

@@ -3,7 +3,8 @@
/// FIPS-180-2 compliant SHA-256 implementation /// FIPS-180-2 compliant SHA-256 implementation
/// GPL by Christophe Devine, applies to older version. /// GPL by Christophe Devine, applies to older version.
/// Modified for md5deep, in public domain. /// Modified for md5deep, in public domain.
/// Modified For Vim, Mohsin Ahmed, http://www.cs.albany.edu/~mosh /// Modified For Vim, Mohsin Ahmed,
/// (original link www.cs.albany.edu/~mosh no longer available)
/// Mohsin Ahmed states this work is distributed under the VIM License or GPL, /// Mohsin Ahmed states this work is distributed under the VIM License or GPL,
/// at your choice. /// at your choice.
/// ///

View File

@@ -35,8 +35,8 @@
// //
// Thanks to Olaf Seibert for providing an example implementation of this tree // Thanks to Olaf Seibert for providing an example implementation of this tree
// and the compression mechanism. // and the compression mechanism.
// LZ trie ideas: // LZ trie ideas, original link (now dead)
// http://www.irb.hr/hr/home/ristov/papers/RistovLZtrieRevision1.pdf // irb.hr/hr/home/ristov/papers/RistovLZtrieRevision1.pdf
// More papers: http://www-igm.univ-mlv.fr/~laporte/publi_en.html // More papers: http://www-igm.univ-mlv.fr/~laporte/publi_en.html
// //
// Matching involves checking the caps type: Onecap ALLCAP KeepCap. // Matching involves checking the caps type: Onecap ALLCAP KeepCap.