Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Office 2016のPowerPointで、C-jによるASCIIからひらがなモードへの切り替えができない #43

Closed
makki547 opened this issue Jan 20, 2016 · 2 comments

Comments

@makki547
Copy link

PowerPointのテキストの両端揃えのショートカットがC-jに割り当てられているようで、SKKとバッティングしているように思います。

Office 2016のWord, Excel, Office 2011のPowerPointではC-jでモード切り替えができているため、Office 2016のPowerPoint特有の問題のように思います。

環境は以下の通りです。
・AquaSKK 4.3.4
・PowerPoint for Mac 15.18 (160109)
・OSX Yosemite 10.10.5

こちらの環境依存かもしれませんが、回避策等がありましたら、ご教授いただけませんでしょうか。

@makki547
Copy link
Author

自己解決いたしました。

みずぴーさんのブログにある、iTerm2/Apple TerminalでAquaSKKを使うのと同様に、
KarabinerでC-jを「かな」にリマップすることで回避できました。
(http://mzp.hatenablog.com/entry/2015/03/15/213219)

Karabinerのprivate.xmlを以下に記します。

<?xml version="1.0"?>
<root>
    <list>
        <item>
            <name>AquaSKK</name>
            <appdef>
                <appname>Powerpoint</appname>
                <equal>com.microsoft.Powerpoint</equal>
            </appdef>
            <list>
                <item>
                     <name>Ctrl-J to Kana on PowerPoint</name>
                     <only>Powerpoint</only>
                     <identifier>private.powerpoint.ctrl_j_to_kana</identifier>
                     <autogen>
                         __KeyToKey__
                         KeyCode::J, ModifierFlag::CONTROL_L,
                         KeyCode::JIS_KANA
                     </autogen>
                </item>
            </list>
        </item>
    </list>
</root>

@mzp
Copy link
Member

mzp commented Jan 21, 2016

なるほど! その手がありましたね!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants