1- *filetype.txt* For Vim version 9.1. Last change: 2025 Feb 25
1+ *filetype.txt* For Vim version 9.1. Last change: 2025 Mar 10
22
33
44 VIM REFERENCE MANUAL by Bram Moolenaar
@@ -776,7 +776,7 @@ Local mappings:
776776 to the end of the file in Normal mode. This means "> " is inserted in
777777 each line.
778778
779- MAN *ft-man-plugin* *:Man* *man.vim*
779+ MAN *ft-man-plugin* *:Man* *:ManReload* * man.vim*
780780
781781This plugin displays a manual page in a nice way. See | find-manpage | in the
782782user manual for more information.
@@ -793,6 +793,8 @@ Commands:
793793Man {name} Display the manual page for {name} in a window.
794794Man {number} {name}
795795 Display the manual page for {name} in a section {number} .
796+ ManReload Reload the cache of available man pages used for | :Man | argument
797+ completion.
796798
797799Global mapping:
798800<Leader> K Displays the manual page for the word under the cursor.
@@ -823,6 +825,14 @@ desired folding style instead. For example: >
823825 If you would like :Man {number} {name} to behave like man {number} {name} by
824826not running man {name} if no page is found, then use this: >
825827 let g:ft_man_no_sect_fallback = 1
828+ <
829+ *g:ft_man_implementation*
830+ The completion for the :Man command tries to guess which implementation of man
831+ the system has. If it guesses wrong, you can set g:ft_man_implementation to
832+ one of these values:
833+ 'man-db' https://man-db.nongnu.org/
834+ '' Unknown, fall back to completing shell commands
835+ instead of man pages.
826836
827837You may also want to set 'keywordprg' to make the | K | command open a manual
828838page in a Vim window: >
@@ -874,6 +884,12 @@ the PDF. The following are treated as tags:
874884
875885These maps can be disabled with >
876886 :let g:no_pdf_maps = 1
887+
888+ PLSQL *ft-plsql-plugin*
889+
890+ To enable syntax folding in PL/SQL filetypes, set the following variable: >
891+
892+ :let g:plsql_fold = 1
877893<
878894
879895PYTHON *ft-python-plugin* *PEP8*
0 commit comments