Skip to content

Commit abdb815

Browse files
author
DeathAxe
committed
Commands: Fix "MarkdownEditing: Key Bindings" command
Key bindings are json lists (no objects).
1 parent acc509d commit abdb815

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Default.sublime-commands

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"command": "edit_settings",
2525
"args": {
2626
"base_file": "${packages}/MarkdownEditing/Default (${platform}).sublime-keymap",
27-
"default": "{\n$0\n}\n"
27+
"default": "// Bindings in here override those in \"Default/Default.sublime-keymap\"\n[\n\t$0\n]\n"
2828
}
2929
},
3030
{

Main.sublime-menu

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
"command": "edit_settings",
4141
"args": {
4242
"base_file": "${packages}/MarkdownEditing/Default (${platform}).sublime-keymap",
43-
"default": "{\n$0\n}\n"
43+
"default": "// Bindings in here override those in \"Default/Default.sublime-keymap\"\n[\n\t$0\n]\n"
4444
}
4545
}
4646
]

0 commit comments

Comments
 (0)