1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Macでバックスラッシュをwindowsと同じボタンで打つ方法

Last updated at Posted at 2025-06-10

概要

MacのJIS配列キーボードでwindowsのように\_(あるいは)のボタンで入力できるようにする方法をまとめました。

1.karabinerをインストール

homebrewでインストール

brew install --cask karabiner-elements

あるいはWebサイトからインストール

2.

karabiner-elementsを開き、Complex Modifications → Add your own ruleを押す。
テンプレート用のテキストが入っていると思いますが、全部消して次を挿入。

{
    "description": "New Rule (backslash)",
    "manipulators": [
        {
            "from": { "key_code": "international1" },
            "to": [
                {
                    "key_code": "international3",
                    "modifiers": ["option"]
                }
            ],
            "type": "basic"
        }
    ]
}

saveを押せば終わりです。

注意点

アンダースコア_はwindowsと同じようにshift+_で出せます。(もともとアンダースコア_は_あるいはshift+_で出せるようになっているのでアンダースコアの設定はいじらなくて大丈夫です。)

参照

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?