If nicolatter is used with Canna, the key combination to
switch between English and Japanese input cannot be
configured in nicolatter it can only be configured in
the Canna setup file ~/.canna.

The default key to switch into japanese mode when using Canna is C-o
(Control-o).

To use a different key instead of C-o, you can add something
like the following to your ~/.canna file:

    ; avoid that C-o is used to start and stop XIM
    ; (this is bad because if C-o starts XIM, it can't be used for 'extend in
    ; the native XEmacs-Canna interface, because it starts XIM
    ; instead of doing 'extend.)

    (global-unbind-key-function 'japanese-mode)
    (global-unbind-key-function 'alpha-mode)
    ; use F4 instead:
    (set-key 'alpha-mode "\F4" 'japanese-mode)
    (set-key 'empty-mode "\F4" 'alpha-mode)

Tue Mar  6 14:13:36 2001  Mike Fabian  <mfabian@suse.de>
