1
0
silverbullet/plugins/core/core.plugin.json

54 lines
1.1 KiB
JSON
Raw Normal View History

2022-02-24 16:24:49 +00:00
{
"commands": {
"Count Words": {
"invoke": "word_count_command",
"requiredContext": {
"text": true
}
},
"Navigate To page": {
"invoke": "link_navigate",
"key": "Ctrl-Enter",
"mac": "Cmd-Enter",
2022-02-25 10:27:58 +00:00
"requiredContext": {}
2022-02-24 16:24:49 +00:00
},
"Insert Current Date": {
2022-02-25 14:34:00 +00:00
"invoke": "insert_nice_date",
"slashCommand": "/insert-today"
2022-02-24 16:24:49 +00:00
},
"Toggle : Heading 1": {
"invoke": "toggle_h1",
"mac": "Cmd-1",
"key": "Ctrl-1"
},
"Toggle : Heading 2": {
"invoke": "toggle_h2",
"mac": "Cmd-2",
"key": "Ctrl-2"
}
},
2022-02-26 11:59:16 +00:00
"events": {
"ready": ["welcome"]
},
2022-02-24 16:24:49 +00:00
"functions": {
2022-02-26 11:59:16 +00:00
"welcome": {
"path": "./welcome.ts"
},
2022-02-24 16:24:49 +00:00
"word_count_command": {
"path": "./word_count_command.ts:wordCount"
},
"link_navigate": {
"path": "./link_navigate.ts:linkNavigate"
},
"insert_nice_date": {
"path": "./dates.ts:insertToday"
},
"toggle_h1": {
"path": "./markup.ts:toggleH1"
},
"toggle_h2": {
"path": "./markup.ts:toggleH2"
}
}
}