一、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

最新文章

  1. Oracle中日期时间的操作比较和加减-入门基础(转)
  2. vscode中启动浏览器的tasks.json
  3. 在C#中dagagridview绑定list泛型
  4. sql简易的MRP资源分析
  5. 第二百七十四、五、六天 how can I 坚持
  6. 【转】COCOS2D-X之不断变化的数字效果Demo
  7. wpf ListBox或ListView等数据控件 绑定数据,最简单的方式
  8. glance image cache
  9. 关于OJ的输入和输出(转)
  10. Xmind 快捷键
  11. Swift - 类初始化和反初始化方法(init与deinit)
  12. 非常有用的css使用总结
  13. 配置Meld为git的默认比较工具
  14. Bank方案SQL
  15. 等价于n*n的矩阵,填写0,1,要求每行每列的都有偶数个1 (没有1也是偶数个),问有多少种方法。
  16. win7 wamp 64位 php环境如何开启curl服务?
  17. DevExpress06、Popup Menus、RadialMenu、XtraTabControl、SplitContainerControl、GroupControl
  18. 解决提交按钮在IE浏览器正常在360浏览器不可用
  19. Module ngx_http_v2_module
  20. Wildcard Matching leetcode java

热门文章

  1. IE7 浏览器下面设置text-indent属性变成margin属性BUG
  2. 通过使用OpenVPN来构建一个VPN
  3. NSDateFormatter 时间格式转换
  4. Titanium.UI.createAlertDialog
  5. java代码走查审查规范
  6. installshield使用教程
  7. 原创 C++作用域 (一)
  8. mybatis关联映射
  9. [LeetCode] Add and Search Word - Data structure design 添加和查找单词-数据结构设计
  10. [LeetCode] Find Minimum in Rotated Sorted Array II 寻找旋转有序数组的最小值之二