matiszz
matiszz

Reputation: 616

How to use IntelliJ's keymap for SublimeText 3

I'm very used to IntelliJ IDEA's family keybinding (PyCharm, WebStorm, RubyMine...).

How can I configure Sumblime Text 3 to use those shortcuts?

I've been googling and I can't find anything! But I don't think I'm the only one needing this. Thank you :)

Upvotes: 4

Views: 3313

Answers (1)

Yassine ECHCHARAFI
Yassine ECHCHARAFI

Reputation: 660

Sublime Text 3 - User Key Bindings (IntelliJ IDEA Style) - Windows

[
     { "keys": ["ctrl+y"], "command": "run_macro_file", "args": {"file": "res://Packages/Default/Delete Line.sublime-macro"} },
     { "keys": ["ctrl+d"], "command": "duplicate_line" },
     { "keys": ["shift+alt+up"], "command": "swap_line_up" },
     { "keys": ["shift+alt+down"], "command": "swap_line_down" }
]

found the answer here.

Upvotes: 4

Related Questions