Skip to content

Instantly share code, notes, and snippets.

@henry0312
Created July 4, 2013 06:16
Show Gist options
  • Save henry0312/5925282 to your computer and use it in GitHub Desktop.
Save henry0312/5925282 to your computer and use it in GitHub Desktop.
--- lisp/term/ns-win.el.patched 2013-07-04 15:11:31.000000000 +0900
+++ lisp/term/ns-win.el 2013-07-04 15:11:47.000000000 +0900
@@ -1285,6 +1285,58 @@
(title . "半英")
(cursor-color)
(cursor-type))
+ ("com.justsystems.inputmethod.atok26.Japanese"
+ (title . "ひらがな")
+ (cursor-color)
+ (cursor-type))
+ ("com.justsystems.inputmethod.atok26.Japanese.FullWidthRoman"
+ (title . "全角英字")
+ (cursor-color)
+ (cursor-type))
+ ("com.justsystems.inputmethod.atok26.Japanese.HalfWidthKana"
+ (title . "半角カタカナ")
+ (cursor-color)
+ (cursor-type))
+ ("com.justsystems.inputmethod.atok26.Japanese.Katakana"
+ (title . "カタカナ")
+ (cursor-color)
+ (cursor-type))
+ ("com.justsystems.inputmethod.atok26.Roman"
+ (title . "英字")
+ (cursor-color)
+ (cursor-type))
+ ("com.justsystems.inputmethod.atok26.Japanese.FullWidthEisu"
+ (title . "全角英数")
+ (cursor-color)
+ (cursor-type))
+ ("com.justsystems.inputmethod.atok26.Japanese.FullWidthEisuKotei"
+ (title . "全角英数固定")
+ (cursor-color)
+ (cursor-type))
+ ("com.justsystems.inputmethod.atok26.Japanese.HalfWidthEiji"
+ (title . "半角英字")
+ (cursor-color)
+ (cursor-type))
+ ("com.justsystems.inputmethod.atok26.Japanese.HalfWidthEisu"
+ (title . "半角英数")
+ (cursor-color)
+ (cursor-type))
+ ("com.justsystems.inputmethod.atok26.Japanese.HalfWidthInput"
+ (title . "半角入力")
+ (cursor-color)
+ (cursor-type))
+ ("com.justsystems.inputmethod.atok26.Japanese.HalfWidthKanaKotei"
+ (title . "半角カタカナ固定")
+ (cursor-color)
+ (cursor-type))
+ ("com.justsystems.inputmethod.atok26.Japanese.HiraganaKotei"
+ (title . "ひらがな固定")
+ (cursor-color)
+ (cursor-type))
+ ("com.justsystems.inputmethod.atok26.Japanese.KatakanaKotei"
+ (title . "カタカナ固定")
+ (cursor-color)
+ (cursor-type))
)
"Alist of Mac script code vs parameters for input method on MacOSX.")
@henry0312
Copy link
Author

titleを以前のものと合わせるならこんな感じになる?

("com.justsystems.inputmethod.atok26.Japanese"
 (title . "あ")
 (cursor-color)
 (cursor-type))
("com.justsystems.inputmethod.atok26.Japanese.FullWidthRoman"
 (title . "英")
 (cursor-color)
 (cursor-type))
("com.justsystems.inputmethod.atok26.Japanese.HalfWidthKana"
 (title . "ア")
 (cursor-color)
 (cursor-type))
("com.justsystems.inputmethod.atok26.Japanese.Katakana"
 (title . "ア")
 (cursor-color)
 (cursor-type))
("com.justsystems.inputmethod.atok26.Roman"
 (title . "A")
 (cursor-color)
 (cursor-type))
("com.justsystems.inputmethod.atok26.Japanese.FullWidthEisu"
 (title . "全A")
 (cursor-color)
 (cursor-type))
("com.justsystems.inputmethod.atok26.Japanese.FullWidthEisuKotei"
 (title . "全A固")
 (cursor-color)
 (cursor-type))
("com.justsystems.inputmethod.atok26.Japanese.HalfWidthEiji"
 (title . "半英")
 (cursor-color)
 (cursor-type))
("com.justsystems.inputmethod.atok26.Japanese.HalfWidthEisu"
 (title . "半A")
 (cursor-color)
 (cursor-type))
("com.justsystems.inputmethod.atok26.Japanese.HalfWidthInput"
 (title . "半角")
 (cursor-color)
 (cursor-type))
("com.justsystems.inputmethod.atok26.Japanese.HalfWidthKanaKotei"
 (title . "半ア固")
 (cursor-color)
 (cursor-type))
("com.justsystems.inputmethod.atok26.Japanese.HiraganaKotei"
 (title . "あ固")
 (cursor-color)
 (cursor-type))
("com.justsystems.inputmethod.atok26.Japanese.KatakanaKotei"
 (title . "ア固")
 (cursor-color)
 (cursor-type))

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment