File tree Expand file tree Collapse file tree 2 files changed +12
-11
lines changed Expand file tree Collapse file tree 2 files changed +12
-11
lines changed Original file line number Diff line number Diff line change 1
- *term.txt* For Vim バージョン 9.1. Last change: 2024 Oct 05
1
+ *term.txt* For Vim バージョン 9.1. Last change: 2024 Dec 31
2
2
3
3
4
4
VIMリファレンスマニュアル by Bram Moolenaar
@@ -684,11 +684,11 @@ https://github.com/termstandard/colors を参照してください。
684
684
let &t_8f = "\<Esc>[38;2;%lu;%lu;%lum"
685
685
let &t_8b = "\<Esc>[48;2;%lu;%lu;%lum"
686
686
687
- 端末によっては、セミコロンをすべてコロンに置き換えた同じシーケンスを受け付ける
688
- ものもあります (この方が実際には互換性が高いですが、あまり広くサポートされてい
689
- ません ): >
690
- let &t_8f = "\<Esc>[38:2:%lu:%lu:%lum"
691
- let &t_8b = "\<Esc>[48:2:%lu:%lu:%lum"
687
+ 一部の端末では、セミコロンをコロンに置き換え、数字 2 の後にコロンを追加した同
688
+ 様のシーケンスが受け入れられます (これは ISO 8613-6 標準に準拠していますが、あ
689
+ まり広くサポートされていません ): >
690
+ let &t_8f = "\<Esc>[38:2:: %lu:%lu:%lum"
691
+ let &t_8b = "\<Esc>[48:2:: %lu:%lu:%lum"
692
692
693
693
これらのオプションは printf 用の文字列を含んでおり、| printf() | (実際には `l `
694
694
modifier ゆえに C 言語のものと同等) により t_ オプションの値と、赤、青、緑を表
Original file line number Diff line number Diff line change 1
- *term.txt* For Vim version 9.1. Last change: 2024 Oct 05
1
+ *term.txt* For Vim version 9.1. Last change: 2024 Dec 31
2
2
3
3
4
4
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -688,10 +688,11 @@ The default values are set like this: >
688
688
let &t_8f = "\<Esc>[38;2;%lu;%lu;%lum"
689
689
let &t_8b = "\<Esc>[48;2;%lu;%lu;%lum"
690
690
691
- Some terminals accept the same sequences, but with all semicolons replaced by
692
- colons (this is actually more compatible, but less widely supported): >
693
- let &t_8f = "\<Esc>[38:2:%lu:%lu:%lum"
694
- let &t_8b = "\<Esc>[48:2:%lu:%lu:%lum"
691
+ Some terminals accept similar sequences, with semicolons replaced by colons
692
+ and an extra colon after the number 2 (this is conformant to the ISO 8613-6
693
+ standard, but less widely supported): >
694
+ let &t_8f = "\<Esc>[38:2::%lu:%lu:%lum"
695
+ let &t_8b = "\<Esc>[48:2::%lu:%lu:%lum"
695
696
696
697
These options contain printf strings, with | printf() | (actually, its C
697
698
equivalent hence `l ` modifier) invoked with the t_ option value and three
You can’t perform that action at this time.
0 commit comments