美文网首页
让 Sublime Text 可以像 Idea 一样扩展选取

让 Sublime Text 可以像 Idea 一样扩展选取

作者: Vissioon | 来源:发表于2017-09-26 17:54 被阅读73次
  1. ctrl/command + shift + p
    选择 install package
image.png
  1. 搜索 expandRegion 并选择

  2. 在 Preferences>key Bindings 里面添加

[  
  { "keys": ["ctrl+w"], "command": "expand_region" },  
]

或者在 mac 中

[  
  { "keys": ["super+w"], "command": "expand_region" },  
]
  1. 效果
扩展选取展示.gif

相关文章

网友评论

      本文标题:让 Sublime Text 可以像 Idea 一样扩展选取

      本文链接:https://www.haomeiwen.com/subject/ohqeextx.html