V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
daweii
V2EX  ›  问与答

MacOS 上输入法中日英三语切换有啥好用的方案吗?

  •  
  •   daweii · 9 小时 10 分钟前 via iPhone · 432 次点击

    平时要用到中日英三语。现在是日语键盘,日语和英语是空格键的左右两个键一键切换。但是中文没有的按键,用的是一个组合按键不太方便,大家有啥好方案吗。

    8 条回复    2025-11-30 19:03:22 +08:00
    orion1
        1
    orion1  
    PRO
       8 小时 1 分钟前   ❤️ 1
    搜狗输入法,用 fn 一个按钮就能切换
    drank20L
        2
    drank20L  
       7 小时 52 分钟前   ❤️ 1
    装 hammerspoon ,然后在 vscode 里提要求让 AI 实现
    zmxnv123
        3
    zmxnv123  
       7 小时 30 分钟前   ❤️ 1
    karabiner 左键 shift 切换中英,右键 shift 切换日英

    {
    "description": "Use left_shift to switch input sources",
    "manipulators": [
    {
    "conditions": [
    {
    "input_sources": [{ "language": "en" }],
    "type": "input_source_if"
    }
    ],
    "from": { "key_code": "left_shift" },
    "parameters": {
    "basic.to_if_alone_timeout_milliseconds": 200,
    "basic.to_if_held_down_threshold_milliseconds": 200
    },
    "to": [
    {
    "key_code": "left_shift",
    "lazy": true
    }
    ],
    "to_if_alone": [
    {
    "key_code": "spacebar",
    "modifiers": ["left_control", "left_option"]
    },
    {
    "key_code": "spacebar",
    "modifiers": ["left_control", "left_option"]
    }
    ],
    "to_if_held_down": [{ "key_code": "left_shift" }],
    "type": "basic"
    },
    {
    "conditions": [
    {
    "input_sources": [{ "language": "ja" }],
    "type": "input_source_if"
    }
    ],
    "from": { "key_code": "left_shift" },
    "parameters": {
    "basic.to_if_alone_timeout_milliseconds": 200,
    "basic.to_if_held_down_threshold_milliseconds": 200
    },
    "to": [
    {
    "key_code": "left_shift",
    "lazy": true
    }
    ],
    "to_if_alone": [
    {
    "key_code": "spacebar",
    "modifiers": ["left_control", "left_option"]
    }
    ],
    "to_if_held_down": [{ "key_code": "left_shift" }],
    "type": "basic"
    },
    {
    "conditions": [
    {
    "input_sources": [{ "language": "zh-Hans" }],
    "type": "input_source_if"
    }
    ],
    "from": { "key_code": "left_shift" },
    "parameters": {
    "basic.to_if_alone_timeout_milliseconds": 200,
    "basic.to_if_held_down_threshold_milliseconds": 200
    },
    "to": [
    {
    "key_code": "left_shift",
    "lazy": true
    }
    ],
    "to_if_alone": [
    {
    "key_code": "spacebar",
    "modifiers": ["left_control", "left_option"]
    }
    ],
    "to_if_held_down": [{ "key_code": "left_shift" }],
    "type": "basic"
    },
    {
    "conditions": [
    {
    "input_sources": [{ "language": "zh-Hans" }],
    "type": "input_source_if"
    }
    ],
    "from": { "key_code": "right_shift" },
    "parameters": {
    "basic.to_if_alone_timeout_milliseconds": 200,
    "basic.to_if_held_down_threshold_milliseconds": 200
    },
    "to": [
    {
    "key_code": "left_shift",
    "lazy": true
    }
    ],
    "to_if_alone": [
    {
    "key_code": "spacebar",
    "modifiers": ["left_control", "left_option"]
    },
    {
    "key_code": "spacebar",
    "modifiers": ["left_control", "left_option"]
    }
    ],
    "to_if_held_down": [{ "key_code": "left_shift" }],
    "type": "basic"
    },
    {
    "conditions": [
    {
    "input_sources": [{ "language": "ja" }],
    "type": "input_source_if"
    }
    ],
    "from": { "key_code": "right_shift" },
    "parameters": {
    "basic.to_if_alone_timeout_milliseconds": 200,
    "basic.to_if_held_down_threshold_milliseconds": 200
    },
    "to": [
    {
    "key_code": "left_shift",
    "lazy": true
    }
    ],
    "to_if_alone": [
    {
    "key_code": "spacebar",
    "modifiers": ["left_control", "left_option"]
    },
    {
    "key_code": "spacebar",
    "modifiers": ["left_control", "left_option"]
    }
    ],
    "to_if_held_down": [{ "key_code": "left_shift" }],
    "type": "basic"
    },
    {
    "conditions": [
    {
    "input_sources": [{ "language": "en" }],
    "type": "input_source_if"
    }
    ],
    "from": { "key_code": "right_shift" },
    "parameters": {
    "basic.to_if_alone_timeout_milliseconds": 200,
    "basic.to_if_held_down_threshold_milliseconds": 200
    },
    "to": [
    {
    "key_code": "left_shift",
    "lazy": true
    }
    ],
    "to_if_alone": [
    {
    "key_code": "spacebar",
    "modifiers": ["left_control", "left_option"]
    }
    ],
    "to_if_held_down": [{ "key_code": "left_shift" }],
    "type": "basic"
    }
    ]
    }
    Kasine
        4
    Kasine  
       6 小时 54 分钟前
    Caps 当前和英文循环,另一个组合键中日英循环
    ablu
        5
    ablu  
       6 小时 27 分钟前
    ctrl+space 切换应该还是支持的吧,一次上回,两次第三种
    cwxiaos
        6
    cwxiaos  
       1 小时 21 分钟前 via iPhone
    Keyboard, Press Key to "Change Input Source"

    可以循环切换
    cwxiaos
        7
    cwxiaos  
       1 小时 20 分钟前 via iPhone
    @cwxiaos 那个 fn 键
    gpt5
        8
    gpt5  
       1 小时 16 分钟前 via iPad
    我需要切换 4 种输入法,我的意见是,不要“相对”切换,而是“用绝”对切换,即每个输入法对应一个快捷键
    关于   ·   帮助文档   ·   自助推广系统   ·   博客   ·   API   ·   FAQ   ·   Solana   ·   2733 人在线   最高记录 6679   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 20ms · UTC 12:20 · PVG 20:20 · LAX 04:20 · JFK 07:20
    ♥ Do have faith in what you're doing.