Autoeng

From Fcitx
Revision as of 23:17, 2 February 2016 by FuzzyBot (talk | contribs) (Importing a new version from external source)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
autoeng
Version 4.2.1
Written In C
License GPLv2
Type Module
Website http://code.google.com/p/fcitx

Intro

Autoeng is a module that can switch Fcitx to a temporary english mode, currently it's used with most Chinese input method.

Usage

There are two ways to trigger autoeng mode.

  • Enter a upper case character.
  • Enter a character and the Raw buffer is matched with a string in the list.

The string list is placed under data/AutoEng.dat. By default it contains string such as "www.". For example, when you are typing "www.", and currently it's in Pinyin, it will trigger the autoeng mode.

Disable it from code

If your input method is conflicts with this function, you can use

   boolean flag = false;
   FcitxInstanceSetContext(inst, CONTEXT_DISABLE_AUTOENG, &flag);

in your input method Init function.