Skip to content

Commit dbe1ab9

Browse files
authored
Merge pull request #1982 from h-east/update-filetype
Update filetype.{txt,jax}
2 parents 651b1c4 + bca5573 commit dbe1ab9

File tree

2 files changed

+37
-4
lines changed

2 files changed

+37
-4
lines changed

doc/filetype.jax

+19-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*filetype.txt* For Vim バージョン 9.1. Last change: 2025 Feb 25
1+
*filetype.txt* For Vim バージョン 9.1. Last change: 2025 Mar 10
22

33

44
VIMリファレンスマニュアル by Bram Moolenaar
@@ -764,7 +764,7 @@ MAIL *ft-mail-plugin*
764764
位置からファイル末端までのテキストを引用する。これは全ての行に "> " が
765765
挿入されることを意味している。
766766

767-
MAN *ft-man-plugin* *:Man* *man.vim*
767+
MAN *ft-man-plugin* *:Man* *:ManReload* *man.vim*
768768

769769
このプラグインはマニュアルページを洗練された方法で表示する。ユーザーマニュアル
770770
の詳細な情報は |find-manpage| も参照のこと。
@@ -783,6 +783,8 @@ Man {name} {name} についてのマニュアルページを表示する。
783783
Man {number} {name}
784784
{number} セクションの {name} についてのマニュアルページを表示
785785
する。
786+
ManReload |:Man| の引数補完に使われる使用可能なマニュアルページのキャッ
787+
シュを再読み込みする。
786788

787789
グローバルキーマップ:
788790
<Leader>K カーソル下の単語についてのマニュアルページを表示する。
@@ -813,6 +815,14 @@ CTRL-T 直前のマニュアルページへ戻る。
813815
:Man {number} {name} が man {number} {name} のように振る舞い、ページが見つから
814816
ない場合に man {name} を実行させたくなければ、これを使用する: >
815817
let g:ft_man_no_sect_fallback = 1
818+
<
819+
*g:ft_man_implementation*
820+
:Man コマンドの補完はシステムがどの man の実装を持っているかを推測しようとす
821+
る。推測が間違っている場合は、g:ft_man_implementation を次のいずれかの値に設定
822+
できる:
823+
'man-db' https://man-db.nongnu.org/
824+
'' 不明。マニュアルページの代わりにシェルコマンドの補完に
825+
フォールバックする。
816826

817827
'keywordprg' を設定して、|K| コマンドを Vim ウィンドウのマニュアルページにもで
818828
きる: >
@@ -865,6 +875,13 @@ PDF ファイル内をジャンプするため、タグスタックをシミュ
865875

866876
これらのマップは次のコマンドで無効化できる >
867877
:let g:no_pdf_maps = 1
878+
879+
PLSQL *ft-plsql-plugin*
880+
881+
PL/SQL ファイルタイプでシンタックスの折り畳みを有効にするには、以下の変数を設
882+
定する: >
883+
884+
:let g:plsql_fold = 1
868885
<
869886

870887
PYTHON *ft-python-plugin* *PEP8*

en/filetype.txt

+18-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
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

781781
This plugin displays a manual page in a nice way. See |find-manpage| in the
782782
user manual for more information.
@@ -793,6 +793,8 @@ Commands:
793793
Man {name} Display the manual page for {name} in a window.
794794
Man {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

797799
Global 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
824826
not 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

827837
You may also want to set 'keywordprg' to make the |K| command open a manual
828838
page in a Vim window: >
@@ -874,6 +884,12 @@ the PDF. The following are treated as tags:
874884

875885
These 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

879895
PYTHON *ft-python-plugin* *PEP8*

0 commit comments

Comments
 (0)