Sometimes, frequent translation between Chinese and English is necessary. The only translation tools on my personal computer are the Eudic dictionary and the Saladict browser extension.

Eudic always feels sluggish when launching, making it a bit unpleasant to use. On the other hand, Saladict works seamlessly in the browser, providing a much smoother experience. Although Saladict supports clipboard reading with a global hotkey (I set mine to ALT+T), it still requires an extra CTRL+C press each time, which feels inconvenient.

image-20221026195957505

The official tutorial suggests integrating Saladict with tools like Quicker or UTools for faster lookups. However, installing additional software isnā€™t ideal for meā€”Iā€™ve tried both before, and while they offer rich customization, I simply donā€™t prefer them.

Later, I experimented with AutoHotKey, but again, running an extra program wasnā€™t to my liking.

Then, I glanced at my taskbar icons:

image-20221026193940313

I noticed that both MouseInc and ImTip offer powerful hotkey customization, making them perfect for achieving what I needed.

MouseInc

This is a mouse gesture toolā€”once you get used to it, thereā€™s no going back. The documentation can be found here: MouseInc Manual (shuax.com).

Hereā€™s how I configured it: I replaced the built-in “Baidu Search” gesture (S) with a shortcut for Saladict.

image-20221026194425643

Thatā€™s it! Hereā€™s a demo of how it works:

GIF 2022-10-26 20-12-59

ImTip

This is an input method indicator. Since I frequently switch between Chinese and English inputā€”and I usually hide my taskbarā€”itā€™s hard to tell whether Iā€™m in full-width or half-width mode. ImTip solves this problem perfectly. The small floating window following the cursor in the GIF above is from this tool.

Documentation here: ImTip (Input Method Tracker) - Official Site (aardio.com).

ImTip also provides a “Super Hotkey” feature, allowing me to skip the copy step and look up words instantly.

Just enable Super Hotkey and add the following configuration:

1
2
3
4
5
6
7
// Saladict Hotkey  
["Alt+T"] = function(hFocus){  
    key.up("ALT");  
    key.combine("CTRL","C"); // Copy  
    //key.up("CTRL");  
    key.combine("ALT","T"); // Look up  
};

Now, pressing ALT+T directly triggers the translation lookup.

Actually, when Old Niu’s keyboard broke before, this method could also have been usedā€”achieving the blocking effect through hotkey mapping.