aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordundargoc <gocdundar@gmail.com>2023-12-13 19:16:41 +0100
committerdundargoc <33953936+dundargoc@users.noreply.github.com>2023-12-13 20:31:16 +0100
commit1d63a057a6cb47e84c204f64ba5406cfe7a3ab93 (patch)
treebb00fb949454078cba1e1db6b32a3a7b478c65b2
parent7908dc0d1552e715cc4cc077e6b87d53d0e323c2 (diff)
downloadrneovim-1d63a057a6cb47e84c204f64ba5406cfe7a3ab93.tar.gz
rneovim-1d63a057a6cb47e84c204f64ba5406cfe7a3ab93.tar.bz2
rneovim-1d63a057a6cb47e84c204f64ba5406cfe7a3ab93.zip
docs: fix links
-rw-r--r--BUILD.md2
-rw-r--r--INSTALL.md2
-rw-r--r--MAINTAIN.md4
-rw-r--r--runtime/doc/dev_tools.txt6
-rw-r--r--runtime/doc/dev_vimpatch.txt1
-rw-r--r--runtime/doc/faq.txt2
-rwxr-xr-xsrc/clint.py2
7 files changed, 7 insertions, 12 deletions
diff --git a/BUILD.md b/BUILD.md
index a1e98c3bef..b9fed84a5e 100644
--- a/BUILD.md
+++ b/BUILD.md
@@ -7,7 +7,7 @@
2. `git clone https://github.com/neovim/neovim`
3. `cd neovim && make CMAKE_BUILD_TYPE=RelWithDebInfo`
- If you want the **stable release**, also run `git checkout stable`.
- - If you want to install to a custom location, set `CMAKE_INSTALL_PREFIX`. See also [Installing Neovim](https://github.com/neovim/neovim/wiki/Installing-Neovim#install-from-source).
+ - If you want to install to a custom location, set `CMAKE_INSTALL_PREFIX`. See also [INSTALL.md](./INSTALL.md#install-from-source).
- On BSD, use `gmake` instead of `make`.
- To build on Windows, see the [Building on Windows](#building-on-windows) section. _MSVC (Visual Studio) is recommended._
4. `sudo make install`
diff --git a/INSTALL.md b/INSTALL.md
index c69551342e..3acee676f4 100644
--- a/INSTALL.md
+++ b/INSTALL.md
@@ -5,7 +5,7 @@ You can install Neovim from [download](#install-from-download), [package](#insta
- To start Neovim, run `nvim` (not `neovim`).
- [Discover plugins](Related-projects#plugins).
- Before upgrading to a new version, **check [Breaking Changes](https://neovim.io/doc/user/news.html#news-breaking).**
-- For config (vimrc) see [the FAQ](https://github.com/neovim/neovim/wiki/FAQ#where-should-i-put-my-config-vimrc).
+- For config (vimrc) see [the FAQ](https://neovim.io/doc/user/faq.html#faq-general).
---
diff --git a/MAINTAIN.md b/MAINTAIN.md
index 51e4fc722a..00e3a9b24f 100644
--- a/MAINTAIN.md
+++ b/MAINTAIN.md
@@ -158,10 +158,6 @@ These dependencies are "vendored" (inlined), we must update the sources manually
* `runtime/lua/coxpcall.lua`: coxpcall (only needed for PUC lua, builtin to luajit)
* `src/termkey`: [libtermkey](https://github.com/neovim/libtermkey)
-### Forks
-
-We may maintain forks, if we are waiting on upstream changes: https://github.com/neovim/neovim/wiki/Deps
-
Non-technical dependencies
--------------------------
diff --git a/runtime/doc/dev_tools.txt b/runtime/doc/dev_tools.txt
index f222930e99..3ee48bec90 100644
--- a/runtime/doc/dev_tools.txt
+++ b/runtime/doc/dev_tools.txt
@@ -163,10 +163,10 @@ to `tui.c:terminfo_start`.
USING GDBSERVER IN TMUX ~
Consider using a custom makefile
-https://github.com/neovim/neovim/wiki/Building-Neovim#custom-makefile to
+https://github.com/neovim/neovim/blob/master/BUILD.md#custom-makefile to
quickly start debugging sessions using the `gdbserver` method mentioned above.
-This example `local.mk` will create the debugging session when you type
-`make debug`.
+This example `local.mk` will create the debugging session when you type `make
+debug`.
>make
.PHONY: dbg-start dbg-attach debug build
diff --git a/runtime/doc/dev_vimpatch.txt b/runtime/doc/dev_vimpatch.txt
index c302a3e934..4ed585589c 100644
--- a/runtime/doc/dev_vimpatch.txt
+++ b/runtime/doc/dev_vimpatch.txt
@@ -149,7 +149,6 @@ TYPES OF "NOT APPLICABLE" VIM PATCHES ~
- Many tests in `test_prompt_buffer.vim` require incompatible Vim features
such as `channel`; they should still be included, but skipped
- non-runtime documentation: Moved to https://neovim.io/doc/,
- https://github.com/neovim/neovim/wiki#developers
- NA files: `Filelist`, `README`, `INSTALL`,
- Anything else might be relevant; err on the side of caution, and post an
issue if you aren't sure.
diff --git a/runtime/doc/faq.txt b/runtime/doc/faq.txt
index 1e9dc052a1..09bf829512 100644
--- a/runtime/doc/faq.txt
+++ b/runtime/doc/faq.txt
@@ -255,7 +255,7 @@ Use an optimized build:
Build type: Release
<
If it reports `Build type: Debug` and you're building Nvim from source, see
-https://github.com/neovim/neovim/wiki/Building-Neovim.
+https://github.com/neovim/neovim/blob/master/BUILD.md.
COLORS AREN'T DISPLAYED CORRECTLY ~
diff --git a/src/clint.py b/src/clint.py
index ed5aaf43d2..021d6b0a16 100755
--- a/src/clint.py
+++ b/src/clint.py
@@ -2082,7 +2082,7 @@ def CheckLanguage(filename, clean_lines, linenum, error):
if match:
error(filename, linenum, 'runtime/deprecated', 4,
'Accessing list_T internals directly is prohibited; '
- 'see https://github.com/neovim/neovim/wiki/List-management-in-Neovim')
+ 'see https://neovim.io/doc/user/dev_vimpatch.html#dev-vimpatch-list-management')
# Check for suspicious usage of "if" like
# } if (a == b) {