V2EX = way to explore
V2EX 是一个关于分享和探索的地方
Sign Up Now
For Existing Member  Sign In
daweii
V2EX  ›  问与答

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

  •  
  •   daweii · Nov 30, 2025 via iPhone · 1828 views
    This topic created in 154 days ago, the information mentioned may be changed or developed.

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

    9 replies    2025-12-01 22:21:17 +08:00
    orion1
        1
    orion1  
    PRO
       Nov 30, 2025   ❤️ 1
    搜狗输入法,用 fn 一个按钮就能切换
    drank20L
        2
    drank20L  
       Nov 30, 2025   ❤️ 1
    装 hammerspoon ,然后在 vscode 里提要求让 AI 实现
    xe2vherd
        3
    xe2vherd  
       Nov 30, 2025   ❤️ 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  
       Nov 30, 2025
    Caps 当前和英文循环,另一个组合键中日英循环
    ablu
        5
    ablu  
       Nov 30, 2025
    ctrl+space 切换应该还是支持的吧,一次上回,两次第三种
    cwxiaos
        6
    cwxiaos  
       Nov 30, 2025 via iPhone
    Keyboard, Press Key to "Change Input Source"

    可以循环切换
    cwxiaos
        7
    cwxiaos  
       Nov 30, 2025 via iPhone
    @cwxiaos 那个 fn 键
    gpt5
        8
    gpt5  
       Nov 30, 2025 via iPad
    我需要切换 4 种输入法,我的意见是,不要“相对”切换,而是“用绝”对切换,即每个输入法对应一个快捷键
    maemolee
        9
    maemolee  
       Dec 1, 2025
    我是一直 ctrl+space 循环按啊,微信输入法+英文+日语罗马字
    About   ·   Help   ·   Advertise   ·   Blog   ·   API   ·   FAQ   ·   Solana   ·   2356 Online   Highest 6679   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 43ms · UTC 05:50 · PVG 13:50 · LAX 22:50 · JFK 01:50
    ♥ Do have faith in what you're doing.