File tree Expand file tree Collapse file tree 2 files changed +16
-4
lines changed Expand file tree Collapse file tree 2 files changed +16
-4
lines changed Original file line number Diff line number Diff line change 1
- *helphelp.txt* For Vim バージョン 9.1. Last change: 2024 Nov 19
1
+ *helphelp.txt* For Vim バージョン 9.1. Last change: 2024 Dec 15
2
2
3
3
4
4
VIMリファレンスマニュアル by Bram Moolenaar
@@ -430,7 +430,13 @@ Ex コマンドのブロックを例示するときは、大なり記号 (>) を
430
430
echo "Example"
431
431
endfunction
432
432
<
433
-
433
+ コード例に Vim 構文ハイライトサポートを追加することができます。これは、大なり
434
+ 記号 (>) の後に "vim" を追加することで可能です (">vim")。
435
+ 例: >vim
436
+ function Example_Func()
437
+ echo "Example"
438
+ endfunction
439
+ <
434
440
Vim ヘルプファイルでは以下のものがそれぞれハイライトされます:
435
441
- 特殊キーの名前。<PageDown> のような <> 表記で書かれたものと、CTRL-X のよう
436
442
に書かれた制御文字。
Original file line number Diff line number Diff line change 1
- *helphelp.txt* For Vim version 9.1. Last change: 2024 Nov 19
1
+ *helphelp.txt* For Vim version 9.1. Last change: 2024 Dec 15
2
2
3
3
4
4
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -437,7 +437,13 @@ also implicitly stops the block of ex-commands before it. E.g. >
437
437
echo "Example"
438
438
endfunction
439
439
<
440
-
440
+ It's possible to add Vim syntax highlighting support to code examples. This
441
+ can be done by adding "vim" after the greater than (>) character (">vim").
442
+ E.g: >vim
443
+ function Example_Func()
444
+ echo "Example"
445
+ endfunction
446
+ <
441
447
The following are highlighted differently in a Vim help file:
442
448
- a special key name expressed either in <> notation as in <PageDown> , or
443
449
as a Ctrl character as in CTRL-X
You can’t perform that action at this time.
0 commit comments