Skip to content

Update filetype.{txt,jax} #1481

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 14 additions & 13 deletions doc/filetype.jax
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
*filetype.txt* For Vim バージョン 9.1. Last change: 2024 Feb 14
*filetype.txt* For Vim バージョン 9.1. Last change: 2024 Apr 03


VIMリファレンスマニュアル by Bram Moolenaar
Expand Down Expand Up @@ -441,6 +441,19 @@ Note: プラグインマネージャーや |packages| を使っている場合
グローバル `plugin_exec` と `<filetype>_exec` 固有の変数の両方が設定されている
場合は、ファイルタイプ固有の変数が優先される必要がある。


ASCIIDOC *ft-asciidoc-plugin*

|folding| を有効にするには、これを使用する: >
let g:asciidoc_folding = 1

折り畳まれたヘッダーのネストを無効にするには、これを使用する: >
let g:asciidoc_foldnested = 0

タイトルの下のすべてを折りたたむことを無効にするには、これを使用する: >
let asciidoc_fold_under_title = 0


AWK *ft-awk-plugin*

@include のような、GNU Awk 固有の機能のサポートは、以下の設定で有効にできる: >
Expand Down Expand Up @@ -554,18 +567,6 @@ b:changelog_entry_prefix
ムを加える。なければ新しいエントリとアイテムをファイルの先頭に加える。


ASCIIDOC *ft-asciidoc-plugin*

|folding| を有効にするには、これを使用する: >
let g:asciidoc_folding = 1

折り畳まれたヘッダーのネストを無効にするには、これを使用する: >
let g:asciidoc_foldnested = 0

タイトルの下のすべてを折りたたむことを無効にするには、これを使用する: >
let asciidoc_fold_under_title = 0


FORTRAN *ft-fortran-plugin*

オプション:
Expand Down
27 changes: 14 additions & 13 deletions en/filetype.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
*filetype.txt* For Vim version 9.1. Last change: 2024 Feb 14
*filetype.txt* For Vim version 9.1. Last change: 2024 Apr 03


VIM REFERENCE MANUAL by Bram Moolenaar
Expand Down Expand Up @@ -437,6 +437,19 @@ So to enable this only for ruby, set the following variable: >
If both, the global `plugin_exec` and the `<filetype>_exec` specific variable
are set, the filetype specific variable should have precedent.


ASCIIDOC *ft-asciidoc-plugin*

To enable |folding| use this: >
let g:asciidoc_folding = 1

To disable nesting of folded headers use this: >
let g:asciidoc_foldnested = 0

To disable folding everything under the title use this: >
let asciidoc_fold_under_title = 0


AWK *ft-awk-plugin*

Support for features specific to GNU Awk, like @include, can be enabled by
Expand Down Expand Up @@ -564,18 +577,6 @@ under it. If not found, a new entry and item is prepended to the beginning of
the Changelog.


ASCIIDOC *ft-asciidoc-plugin*

To enable |folding| use this: >
let g:asciidoc_folding = 1

To disable nesting of folded headers use this: >
let g:asciidoc_foldnested = 0

To disable folding everything under the title use this: >
let asciidoc_fold_under_title = 0


FORTRAN *ft-fortran-plugin*

Options:
Expand Down