Sublime Forum

Importing VSCode Keybinding

#1

Is there any way to import vscode keybindings to sublime text?

0 Likes

#2

Both VS Code and ST use normal JSON files to define key bindings.

The "key": values would just need to be converted from string to array, but the available "commands" may differ. While VS Code uses a when ST implements contexts to selectively enable key bindings. The syntax and the available variables differ very much.

I therefore guess simple bindings could be translated with find+replace, but for more sophisticated ones, you might not find an automated solution.

0 Likes