Skip to content

v0.7.0

Compare
Choose a tag to compare
@hymkor hymkor released this 01 May 16:14
· 94 commits to master since this release

v0.7.0 (May 1, 2023)

  • LEFT and Ctrl-B can move cursor to the end of the previous line
  • RIGHT and Ctrl-F can move cursor to the beginning of the next line
  • Fix: Backspace did not work to delete backward character since v0.6.9

v0.6.9 (Apr 28, 2023)

  • Remove Read(). Use (*Editor) Read()
  • Remove New(). Use &Editor{}
  • Hide (*Editor).Prompt. Use (*Editor) SetPrompt()

v0.6.8 ( Apr 26, 2023)

  • Fix for go-readline-ny v0.11.0

v0.6.7 (Apr 19, 2023)

  • Disable Ctrl-S and Ctrl-R (one line version incremental search)
  • Add the method: (*Editor) SwapEnter()
  • Add the method: (*Editor) SetHistoryCycling()

v0.6.6 (Apr 17, 2023)

  • Bind PAGEDOWN and PAGEUP to refer history
  • Add 4 setter methods to the type Editor

v0.7.0 (May 1, 2023)

  • 現在の行頭から、LEFT・Ctrl-B で前の行の最後にカーソルを移動できるようになった
  • 現在の行末から、RIGHT・Ctrl-F で次の行の最初へカーソルを移動できるようになった
  • v0.6.9 で Backspace でカーソル前の文字が削除できなくなっていた不具合を修正

v0.6.9 (Apr 28, 2023)

  • 関数 Read() を削除。かわりに (*Editor) Read() をご利用ください
  • 関数 New() を削除。かわりに &Editor{} をご利用ください
  • フィールドを (*Editor) Prompt を隠蔽。かわりに (*Editor) SetPrompt をご利用ください

v0.6.8 ( Apr 26, 2023)

  • go-readline-ny を v0.11.0 へ上げたのみ

v0.6.7 (Apr 19, 2023)

  • 1行向けインクリメンタルサーチの Ctrl-S と Ctrl-R を無効化
  • (*Editor) SwapEnter() を追加
  • (*Editor) SetHistoryCycle() を追加

v0.6.6 (Apr 17, 2023)

  • PAGEDOWN と PAGEUP をヒストリ参照に設定
  • Editor型に4つの Setter 系メソッドを追加