docs: fix links

This commit is contained in:
dundargoc 2023-12-13 19:16:41 +01:00 committed by dundargoc
parent 7908dc0d15
commit 1d63a057a6
7 changed files with 7 additions and 12 deletions

View File

@ -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`

View File

@ -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).
---

View File

@ -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
--------------------------

View File

@ -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

View File

@ -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.

View File

@ -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 ~

View File

@ -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) {