Yijiantong v1.1.0 Update—Supports Candidate Word Frequency Reduction/Deletion Function

Starting from v1.1.0, rilinic supports the frequency reduction feature (removing candidate words / committed words).

This feature is applicable when you make a typing mistake and want the incorrect word to appear less frequently later, or even not appear at all.

How to Use

Ctrl + J to reduce frequency
Ctrl + D to delete (this combination will never appear again)

Deleted words are stored in lua/cold_word_drop/drop_words.lua
Frequency-reduced words are stored in lua/cold_word_drop/turndown_freq_words.lua

For example

local drop_words =
{ "示~例~", "神舟医疗", }
return drop_words

If you want to use the word again in the future, just remove it.

For example

local drop_words =
{ "示~例~" }
return drop_words

Then redeploy.

Demo

To be uploaded

How to Update

To be uploaded

How to Disable This Feature

To be uploaded