Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
実験的に単語登録画面でTabキーを打つことで単語登録画面に入る前に入力した読み部分が自動入力されるようにします。
例
▽あいうえ
と打ってスペースを入力すると[登録:あいうえ]
と表示される。その状態でタブキーを入力すると
[登録:あいうえ]▽あいうえ
のように未登録の読みである「あいうえ」を入力している状態になる。実装した目的
2つの単語からなる言葉、たとえば「にほんとういつ」という読みを持つエントリを登録したいとき、
のように単語登録時に読みの一部を使えると便利かもしれないなと思うことがたまにあったため。
送り仮名があるときにはたとえば
[登録:あいう*え]
の状態でタブキーを入力すると[登録:あいう*え]▽あいう*え
のように送り仮名つきで自動入力されます。送り仮名は不要な気もするのでここは考え中。