Alexander Zeitler
Alexander Zeitler

Reputation: 13109

Sublime binding sequences in JSON keymap files

According to this old documentation of Sublime, it has supported sequence key bindings like "ctrl+t,u" for XML based keymap files.

Is this still supported in JSON keymap files?

Upvotes: 1

Views: 66

Answers (1)

Alexander Zeitler
Alexander Zeitler

Reputation: 13109

Found it:

[
    { "keys": ["ctrl+e","ctrl+f"], "command": "reindent"} 
]

Upvotes: 1

Related Questions