Skip to content
Snippets Groups Projects
Commit 12a696b1 authored by chris's avatar chris
Browse files

fix(shortcuts): add missing comma

parent 57c39a01
No related branches found
No related tags found
1 merge request!60fix(shortcuts): add missing comma
......@@ -75,14 +75,10 @@ class ShortCuts {
"Mod-[": liftListItem(this.schema.nodes.list_item),
"Mod-]": sinkListItem(this.schema.nodes.list_item),
Enter: splitListItem(this.schema.nodes.list_item),
"Shift-Ctrl-8": wrapInList(this.schema.nodes.bulletlist)
"Shift-Ctrl-8": wrapInList(this.schema.nodes.bulletlist),
"Shift-Ctrl-9": wrapInList(this.schema.nodes.orderedlist)
};
}
extendKeys() {
const keys = this.getKeys();
}
}
export default ShortCuts;
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment