-
Notifications
You must be signed in to change notification settings - Fork 36
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
かなテーブル(.rules)を読み込めるようにする #125
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Shougo
reviewed
May 27, 2023
Shougo
reviewed
May 27, 2023
AsPulse
force-pushed
the
feat/load-rule-file
branch
from
May 27, 2023 04:35
4b5402e
to
5ea61ca
Compare
Shougo
approved these changes
Jul 4, 2023
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
簡単な説明
SKKの「拡張設定ファイル」をかなテーブルとして読み込めるようにします。 (configの
globalKanaTableFiles
)動作例
AZIKの拡張設定を読みこんだ様子です。
azik_us.ruleを読みこむことで、
xa→しゃ
jk→じん
などのローマ字入力が追加されています(動画にて読みこんでいる.ruleは私のdotfilesにあるものです)
https://github.com/AsPulse/dotfiles-mac/blob/ccf0703b7cae0965b7c43bb49d0246ccaff29236/AquaSKK/azik_us.rule#L100-L111
skkeleton-azik-demo.mov
変更箇所
今まで かなテーブルを編集したり、ファイルを読みこんだりするのが一箇所だったので
必然的に共通化みたいなことを多くすることになりました……。
readFileWithEncoding
関数を追加しました。エンコーディング指定してファイルを読みこむ処理は
globalDictionaries
のみだったのですが、今回追加するglobalKanaTableFiles
もこの処理を行うので共通化しました。homeExpand
関数がhomePath: string
の代わりにdenops: Denops
を取るようになり、utils.ts
へ移動しました同じく
homeExpand
を使っていたのはinit内のみだったのですが、config内でも使うようになったため共通化しました。injectKanaTable
関数を追加しました。渡された
kanaTable
をグローバル変数のtables
と結合するだけの関数です。registerKanaTableと処理が重複するので追加しました
以下が当該PRに直接関係する変更です.ᐟ.ᐟ.ᐟ
globalKanaTableFiles
を追加しましたglobalDictionaries
と同じノリで書けるように意識しました。helpも書き方を調べ書いてみましたが、書きなれていないので間違いがあれば教えて頂けると嬉しいです。
setConfig
)にかなテーブルをファイルから読みこむようになりました。injectKanaTable
でrom
テーブルを書きかえています。参考追加情報
aee18b3