zoukankan      html  css  js  c++  java
  • CTRL-Space always toggles Chinese IME (Windows 7、10)

    一、window占用了ctrl+空格的快捷键,影响开发工具的只能提示的使用。

    二、解决方式:

    1. Go to Start > Type in regedit and start it (打开运行输入regedit)
    2. Navigate to HKEY_CURRENT_USER/Control Panel/Input Method/Hot Keys(定位到这个位置)
    3. Select the key named:(选择以下俩个语言)
      • 00000070 for the Chinese (Traditional) IME - Ime/NonIme Toggle hotkey
      • 00000010 for the Chinese (Simplified) IME - Ime/NonIme Toggle hotkey
      In the right sub-window, there are three subkeys.(ctrl和空格的十六进制表示)
      • Key Modifiers designate Alt/Ctrl/Shift/etc and is set to Ctrl (02c00000).
      • Virtual Key designates the finishing key and is set to Space (20000000).
    4. Change the first byte in Key Modifiers from 02 to 00(修改)
    5. Change the first byte in Virtual Key from 20 to FF(修改)
    6. Log off and log back on. I don't think it's necessary to restart.(注销并重新登录)
    7. Do not change the Hot keys for input languages in Control Panel, unless you want to do this all over again.

    引用:

    http://superuser.com/questions/327479/ctrl-space-always-toggles-chinese-ime-windows-7

    https://www.zhihu.com/question/36005148/answer/68621648

  • 相关阅读:
    贪婪算法、递归计算、动态规划背包问题
    递归、动态规划计算斐波那契数列
    用于确定两个字符串最长公共子串的函数
    快速排序算法
    顺序、二分查找文本数据
    MyBatis面试题
    Spring面试题
    SpringMvc面试题
    jsp和servlet面试
    EJB的理解
  • 原文地址:https://www.cnblogs.com/kissfu/p/6222248.html
Copyright © 2011-2022 走看看