Skip to content

Instantly share code, notes, and snippets.

@b4284
Last active August 29, 2015 14:22
Show Gist options
  • Save b4284/c55675e7363266705ea0 to your computer and use it in GitHub Desktop.
Save b4284/c55675e7363266705ea0 to your computer and use it in GitHub Desktop.
(require 'anthy)
(defun toggle-input-method-2 (im-name)
(if (string-equal current-input-method im-name)
(deactivate-input-method)
(activate-input-method im-name)))
(defun <f5> () (interactive) (toggle-input-method-2 "chinese-array30-colemak"))
(defun <f6> () (interactive) (toggle-input-method-2 "japanese-anthy"))
(global-set-key (kbd "<f5>") '<f5>)
(global-set-key (kbd "<f6>") '<f6>)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment