diff options
author | Lewis Russell <lewis6991@gmail.com> | 2022-09-02 15:20:29 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-02 15:20:29 +0100 |
commit | 2afcdbd63a5b0cbeaad9d83b096a3af5201c67a9 (patch) | |
tree | a5e44f3dba1287c398af66673fa926e4841c5343 /runtime/doc | |
parent | e085d0be31c68921769c6c437920a3346caec69b (diff) | |
download | rneovim-2afcdbd63a5b0cbeaad9d83b096a3af5201c67a9.tar.gz rneovim-2afcdbd63a5b0cbeaad9d83b096a3af5201c67a9.tar.bz2 rneovim-2afcdbd63a5b0cbeaad9d83b096a3af5201c67a9.zip |
feat(Man): port to Lua (#19912)
Co-authored-by: zeertzjq <zeertzjq@outlook.com>
Diffstat (limited to 'runtime/doc')
-rw-r--r-- | runtime/doc/filetype.txt | 4 | ||||
-rw-r--r-- | runtime/doc/vim_diff.txt | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/runtime/doc/filetype.txt b/runtime/doc/filetype.txt index 7fff74a963..9f8ef248f8 100644 --- a/runtime/doc/filetype.txt +++ b/runtime/doc/filetype.txt @@ -586,12 +586,12 @@ Local mappings: to the end of the file in Normal mode. This means "> " is inserted in each line. -MAN *ft-man-plugin* *:Man* *man.vim* +MAN *ft-man-plugin* *:Man* *man.lua* View manpages in Nvim. Supports highlighting, completion, locales, and navigation. Also see |find-manpage|. -man.vim will always attempt to reuse the closest man window (above/left) but +man.lua will always attempt to reuse the closest man window (above/left) but otherwise create a split. The case sensitivity of completion is controlled by 'fileignorecase'. diff --git a/runtime/doc/vim_diff.txt b/runtime/doc/vim_diff.txt index 0011cd9821..b013e00fe8 100644 --- a/runtime/doc/vim_diff.txt +++ b/runtime/doc/vim_diff.txt @@ -73,7 +73,7 @@ centralized reference of the differences. - 'wildmenu' is enabled - 'wildoptions' defaults to "pum,tagfile" -- |man.vim| plugin is enabled, so |:Man| is available by default. +- |man.lua| plugin is enabled, so |:Man| is available by default. - |matchit| plugin is enabled. To disable it in your config: > :let loaded_matchit = 1 |