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