Unordered list plugin
$ yarn add @aomao/plugin-unorderedlist
Add to engine
import Engine, {EngineInterface} from'@aomao/engine';import Unorderedlist from'@aomao/plugin-unorderedlist';new Engine(...,{ plugins:[Unorderedlist] })
Default shortcut key mod+shift+8
//hotkeyhotkey?: string | Array<string>;//default mod+shift+8//Use configurationnew Engine(...,{config:{"unorderedlist":{//Modify shortcut keyshotkey: "shortcut key"}}})
//Use command to execute the plugin and pass in the required parametersengine.command.execute('unorderedlist');//Use command to execute query current status, return false or current list plugin name unorderedlist tasklist unorderedlistengine.command.queryState('unorderedlist');