LoginSignup
3
3

More than 5 years have passed since last update.

WindowsのSublimeText 2でCtrl+CでCOMMAND MODEへ

Last updated at Posted at 2013-01-20
  • SublimeText2のVintageモードでvim風の操作が可能になるのはいいのですが、Windowsの場合INSERT MODE -> COMMAND MODEへの切り替えが esc か ctrl+[ しかできない!
  • ctrl+c のが断然早いのに!macならそうするのに!

  • ということで、Key Bindings - User を以下のように変更します。コピーは ctrl+shift+c に格下げです。

[
    { "keys": ["ctrl+c"], "command": "exit_insert_mode" },
    { "keys": ["ctrl+shift+c"], "command": "copy" }
]
  • あとおまけですが、IMEのキーバインドで、 ctrl+c をIMEのオフに割り当てれば、COMMAND MODEへの移行時にIMEが閉じてくれて捗ります。
3
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
3