File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -251,7 +251,7 @@ class MarkdownOrderedListButtonElement extends MarkdownButtonElement {
251
251
}
252
252
connectedCallback ( ) {
253
253
super . connectedCallback ( )
254
- this . setAttribute ( 'hotkey' , '9 ' )
254
+ this . setAttribute ( 'hotkey' , '7 ' )
255
255
this . setAttribute ( 'hotkey-requires-shift' , 'true' )
256
256
}
257
257
}
Original file line number Diff line number Diff line change @@ -566,9 +566,9 @@ describe('markdown-toolbar-element', function () {
566
566
567
567
it ( 'turns multiple lines into ordered list via hotkey, requiring shift' , function ( ) {
568
568
setVisualValue ( 'One\n|Two\nThree|\n' )
569
- pressHotkey ( '9 ' , false )
569
+ pressHotkey ( '7 ' , false )
570
570
assert . equal ( 'One\n|Two\nThree|\n' , visualValue ( ) )
571
- pressHotkey ( '9 ' , true )
571
+ pressHotkey ( '7 ' , true )
572
572
assert . equal ( 'One\n\n|1. Two\n2. Three|\n' , visualValue ( ) )
573
573
} )
574
574
You can’t perform that action at this time.
0 commit comments