MacOS 上输入法中日英三语切换有啥好用的方案吗? - V2EX
V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
daweii
V2EX    问与答

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

  •  
  •   daweii 2 天前 via iPhone 917 次点击

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

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

    可以循环切换
    cwxiaos
        7
    cwxiaos  
       2 天前 via iPhone
    @cwxiaos 那个 fn 键
    gpt5
        8
    gpt5  
       1 天前 via iPad
    我需要切换 4 种输入法,我的意见是,不要“相对”切换,而是“用绝”对切换,即每个输入法对应一个快捷键
    maemolee
        9
    maemolee  
       20 小时 38 分钟前
    我是一直 ctrl+space 循环按啊,微信输入法+英文+日语罗马字
    关于     帮助文档     自助推广系统     博客     API     FAQ     Solana     3326 人在线   最高记录 6679       Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 27ms UTC 11:00 PVG 19:00 LAX 03:00 JFK 06:00
    Do have faith in what you're doing.
    ubao msn snddm index pchome yahoo rakuten mypaper meadowduck bidyahoo youbao zxmzxm asda bnvcg cvbfg dfscv mmhjk xxddc yybgb zznbn ccubao uaitu acv GXCV ET GDG YH FG BCVB FJFH CBRE CBC GDG ET54 WRWR RWER WREW WRWER RWER SDG EW SF DSFSF fbbs ubao fhd dfg ewr dg df ewwr ewwr et ruyut utut dfg fgd gdfgt etg dfgt dfgd ert4 gd fgg wr 235 wer3 we vsdf sdf gdf ert xcv sdf rwer hfd dfg cvb rwf afb dfh jgh bmn lgh rty gfds cxv xcv xcs vdas fdf fgd cv sdf tert sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf shasha9178 shasha9178 shasha9178 shasha9178 shasha9178 liflif2 liflif2 liflif2 liflif2 liflif2 liblib3 liblib3 liblib3 liblib3 liblib3 zhazha444 zhazha444 zhazha444 zhazha444 zhazha444 dende5 dende denden denden2 denden21 fenfen9 fenf619 fen619 fenfe9 fe619 sdf sdf sdf sdf sdf zhazh90 zhazh0 zhaa50 zha90 zh590 zho zhoz zhozh zhozho zhozho2 lislis lls95 lili95 lils5 liss9 sdf0ty987 sdft876 sdft9876 sdf09876 sd0t9876 sdf0ty98 sdf0976 sdf0ty986 sdf0ty96 sdf0t76 sdf0876 df0ty98 sf0t876 sd0ty76 sdy76 sdf76 sdf0t76 sdf0ty9 sdf0ty98 sdf0ty987 sdf0ty98 sdf6676 sdf876 sd876 sd876 sdf6 sdf6 sdf9876 sdf0t sdf06 sdf0ty9776 sdf0ty9776 sdf0ty76 sdf8876 sdf0t sd6 sdf06 s688876 sd688 sdf86