Next: Limitations, Previous: Engine Names, Up: The arify
Command Line Tool [Contents][Index]
In addition to libarif
’s Readline features, arify
also provides
the following Readline functions:
arify-toggle
: Turn on/off input method engine. When turned on,
Readline’s completion functions will be replaced by those provided by ARIF.
When turned off, the previously saved completion functions will be restored.
arify-engine-info
: Prints information regarding the currently
active engine.
arify-next-engine
: Switch to the next loaded engine. If there are
no more available engines, switch to the first engine instead.
arify-page-up
, arify-page-down
: Switch to previous/next
page of candidates, and display them.
By default, these Readline functions are not bound to any keys. To use them,
configure the key bindings from a Readline init file.
Here is an example ~/.inputrc
snippet:
set show-all-if-ambiguous on "\e ": arify-toggle "\e\b": arify-next-engine "\e[5;3~": arify-page-up # M-PgUp "\e[6;3~": arify-page-down # M-PgDn