ChangZhuo Chen (陳昌倬)
ChangZhuo Chen (陳昌倬)
@lharding [Your fork](https://github.com/lharding/tasknc) does not enable issue. Please help to enable it so that we can copy this issue.
Copy to https://github.com/lharding/tasknc/issues/1.
My purpose is to add the following code: ``` c enum State { STATE_CHINESE, STATE_ENGLISH_HALFSHAPE, STATE_ENGLISH_FULLSHAPE, STATE_SELET_CANDIDATE, STATE_ENTERING_BOPOMOFO, STATE_SHIFT_SELECT_PHRASE, STATE_EASY_SYMBOL, }; enum ChangeStateAction { ENTER_CHINESE, ENTER_ENGLISH, ENTER_HALFSHAPE, ENTER_FULLSHAPE, ENTER_EASY_SYMBOL, LEAVE_EASY_SYMBOL,...
使用的注音有在 https://www.moedict.tw/麼 嗎?
@mangokingTW Please help to check the CI fails.
@mangokingTW You can add test case for the following scenario: 1. Query phrase frequency. 2. Enter the phrase. 3. Query phrase frequency again. The second frequency shall not be the...
Also, there is another `chiSymbolCursor` in `ChewingOutput`. I think we don't need 3 cursors in `ChewingContext`.
The issue https://github.com/chewing/windows-chewing-tsf/issues/12 is related to high-level API changed.
The following are purposed new APIs for external use: ``` // candidate windows chewing_cand_open(ChewingContext *ctx); chewing_cand_close(ChewingContext *ctx); chewing_cand_choose_by_index(ChewingContext *ctx, int index); chewing_cand_String_by_index(ChewingContext *ctx, int index); // Already implemented, but not...
``` // candidate windows int chewing_cand_is_open(ChewingContext *ctx); int chewing_cand_open(ChewingContext *ctx); itn chewing_cand_close(ChewingContext *ctx); int chewing_cand_choose_by_index(ChewingContext *ctx, int index); int chewing_cand_String_by_index(ChewingContext *ctx, int index); // Already implemented, but not yet in...