-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update the schema to fix wrong codes
- Loading branch information
Showing
8 changed files
with
92 additions
and
87 deletions.
There are no files selected for viewing
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
schema/lua/yuhao_char_filter.lua → schema/lua/xuma/yuhao_char_filter.lua
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
-- rime.lua | ||
|
||
-- 過濾常用漢字 | ||
local yuhao_char_filter = require("yuhao_char_filter") | ||
forfudan_freq_first = yuhao_char_filter.yuhao_char_first | ||
forfudan_freq_only = yuhao_char_filter.yuhao_char_only | ||
local yuhao_char_filter = require("xuma/yuhao_char_filter") | ||
yuhao_char_first = yuhao_char_filter.yuhao_char_first | ||
yuhao_char_only = yuhao_char_filter.yuhao_char_only | ||
|
||
-- 全碼後置和全碼出單 | ||
forfudan_single_char_only_for_full_code = require("forfudan_single_char_only_for_full_code") | ||
xuma_postpone_full_code = require("xuma_postpone_full_code") | ||
forfudan_single_char_only_for_full_code = require("xuma/forfudan_single_char_only_for_full_code") | ||
xuma_postpone_full_code = require("xuma/xuma_postpone_full_code") | ||
|
||
-- 幫助 | ||
forfudan_helper = require("forfudan_helper") | ||
forfudan_helper = require("xuma/forfudan_helper") |
Oops, something went wrong.