vine-default-text-translator.el 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  1. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  2. ;; -*- coding: utf-8-unix -*-
  3. ;; FSF Emacs 23 用 Vine Linux text-translator 設定
  4. ;; IWAI, Masaharu <iwai@alib.jp>
  5. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  6. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  7. ;; text-translator の設定
  8. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  9. (require 'text-translator)
  10. (global-set-key "\C-x\M-t" 'text-translator)
  11. ;; ;; set prefix-key to M-n
  12. ;; (setq text-translator-prefix-key "\M-n")
  13. ;; use translation type auto selection (english/japanese only)
  14. ;; set function that use auto selection
  15. (setq text-translator-auto-selection-func
  16. 'text-translator-translate-by-auto-selection-enja)
  17. ;; set global-key
  18. (global-set-key "\C-xt" 'text-translator-translate-by-auto-selection)
  19. ;; ;; if you are setting environment variables HTTP_PROXY,
  20. ;; ;; you have not to set this.
  21. ;; (setq text-translator-proxy-server "proxy.example.com")
  22. ;; (setq text-translator-proxy-port 8080)
  23. (provide 'vine-default-text-translator)
  24. ;; Local Variables:
  25. ;; mode: emacs-lisp
  26. ;; End: