neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

commit 0d149bb186390c3e40fb693050d0c30cddc8c7c5
parent dcf8a71b85d248a76f013afb67ff54c42697e6c1
Author: bfredl <bjorn.linse@gmail.com>
Date:   Mon, 19 Jun 2023 14:40:53 +0200

fix(docs): the runtimepath is not the runtime path

Diffstat:
Mruntime/doc/api.txt | 2+-
Msrc/nvim/api/vim.c | 2+-
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/runtime/doc/api.txt b/runtime/doc/api.txt @@ -1133,7 +1133,7 @@ nvim_list_chans() *nvim_list_chans()* specified at |nvim_get_chan_info()|. nvim_list_runtime_paths() *nvim_list_runtime_paths()* - Gets the paths contained in 'runtimepath'. + Gets the paths contained in |runtime-search-path|. Return: ~ List of paths diff --git a/src/nvim/api/vim.c b/src/nvim/api/vim.c @@ -487,7 +487,7 @@ Integer nvim_strwidth(String text, Error *err) return (Integer)mb_string2cells(text.data); } -/// Gets the paths contained in 'runtimepath'. +/// Gets the paths contained in |runtime-search-path|. /// /// @return List of paths ArrayOf(String) nvim_list_runtime_paths(Error *err)