Releases: nyaosorg/go-readline-ny
Releases · nyaosorg/go-readline-ny
v0.9.1
v0.9.0
- Rename:
_Cell
(unexported type) toCell
(exported). A instance ofCell
contains a set of code points (=Moji
) and color information (unexported) for one gryph. - Rename:
string2moji
(unexported function) toStringToMoji
(exported) that converts string to an array ofMoji
. A instance ofMoji
contains code points for one gryph.
For example
Emoji 👨🌾 (famer) is represented with three code points (U+0001F468, U+200D , and U+0001F33E). They are contained with one instance of Moji.
- 非公開の型
_Cell
をCell
に改名(公開)。Cell
のインスタンスは1文字を表すコードポイント群(=Moji
)と非公開の色情報を含んでいます。 Moji
型の配列を文字列に変換する非公開の関数string2moji
をStringToMoji
に改名(公開)。Moji
のインスタンスは1文字を表すコードポイント群を保持しています。
例
農夫の絵文字(👨🌾)は3つのコードポイント (U+0001F468, U+200D , and U+0001F33E)で表されますが、Moji
は1インスタンスでそれらを格納します。
v0.8.5
v0.8.4
- (*KeyMap) GetBindKey returning a mapping of keys is inconvenient to return nil, so instead created (*Editor)GetBindKey and removed (*KeyMap) GetBindKey
- キーのマッピングを返す関数の (*KeyMap) GetBindKey が nil を返すのは都合が悪いので、 かわりに (*Editor)GetBindKey を作成し、(*KeyMap) GetBindKey は削除した
v0.8.3
Used in nyagos-4.4.13_0
- Sample color plugin: vimbatch: change foreground color
ESC[37m
(white) toESC[39m
(terminal's default foreground color)
- サンプルの色プラグイン
vimbatch
の文字色をESC[37m
(白) からESC[39m
(端末の標準文字色) へ変更
v0.8.2
v0.8.1
v0.8.0
- Enable surrogate-pair on WezTerm
- Enable surrogate-pair, ZWJ,and VS on Contour Terminal
- Do not use BACKSPACE(\b) as output
( This version is used on nyagos 4.4.12_0 )
v0.7.0
v0.6.3
Changes in v0.6.3 (English)
- (#2,#3) Add flag: Editor.HistoryCycling
- Color: support Multi SelectGraphcReition Parameters (on v0.6.2)
- Implement short function SGR1,SGR2,SGR3,SGR4 for color setting
Changes in v0.6.3 (Japanese)
- (#2,#3) フラグフィールド
Editor.HistoryCycling
を追加 - Color: Multi SelectGraphcReition Parameters をサポート(v0.6.2)
- 色設定のために小関数
SGR1
,SGR2
,SGR3
,SGR4
を実装
Thanks to @ram-on