Is there any way to import vscode keybindings to sublime text?
Importing VSCode Keybinding
deathaxe
#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