发现问题

在使用Sublime和其他编辑器一个很不爽的问题是:在输入一个函数或者有左右的符号或者在引号内时,总是要跳出来,无奈方向键又在主键盘的另一边,只能不断的切换,太特么操蛋,就不能让手指不离开主键盘吗,肯定有,谁让sublime那么懂我呢

解决方案

preference--Key Bindings --Default
修改如下的内容:


{ "keys": ["shift+backspace"], "command": "move", "args": {"by": "characters", "forward": true} },
{ "keys": ["shift+space"], "command": "move", "args": {"by": "characters", "forward": false} },

 

快捷键对照:

shift+space 右移光标一个字
shift+backspace移光标一个字
  

相关文章:

  • 2021-07-12
  • 2021-09-11
  • 2021-08-30
  • 2021-11-03
  • 2022-12-23
  • 2021-12-31
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-11-27
  • 2021-12-21
  • 2022-12-23
  • 2022-12-23
  • 2021-12-30
  • 2022-12-23
相关资源
相似解决方案