UNPKG
v-md-editor
Version:
latest (1.0.6)
1.0.6
A markdown editor built on Vue
v-md-editor
/
src
/
hotkeys
/
codePython.js
10 lines
(8 loc)
•
177 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
{ codePython }
from
'@/utils/constants/command'
;
export
default
{
modifier
:
'alt'
,
key
:
'p'
,
action
(
editor
) { editor.
execCommand
(codePython); }, };