1
0
silverbullet/plugs/core/core.plug.yaml

403 lines
8.8 KiB
YAML
Raw Normal View History

2022-04-26 17:04:36 +00:00
name: core
requiredPermissions:
- fetch
2022-04-11 18:34:09 +00:00
syntax:
2022-07-04 09:38:05 +00:00
Hashtag:
firstCharacters:
- "#"
2023-01-13 15:33:36 +00:00
regex: "#[^#\\d\\s\\[\\]]+\\w+"
2022-08-29 14:16:55 +00:00
className: sb-hashtag
NakedURL:
2022-04-11 18:34:09 +00:00
firstCharacters:
- "h"
regex: "https?:\\/\\/[-a-zA-Z0-9@:%._\\+~#=]{1,256}([-a-zA-Z0-9()@:%_\\+.~#?&=\\/]*)"
2022-08-29 14:16:55 +00:00
className: sb-naked-url
2022-08-30 08:44:20 +00:00
NamedAnchor:
firstCharacters:
2022-10-24 17:40:52 +00:00
- "$"
regex: "\\$[a-zA-Z\\.\\-\\/]+[\\w\\.\\-\\/]*"
2022-08-30 08:44:20 +00:00
className: sb-named-anchor
2022-03-27 09:26:13 +00:00
functions:
2022-12-16 11:44:04 +00:00
setEditorMode:
path: "./editor.ts:setEditorMode"
events:
- editor:init
toggleDarkMode:
path: "./editor.ts:toggleDarkMode"
command:
name: "Editor: Toggle Dark Mode"
2022-03-28 13:25:05 +00:00
clearPageIndex:
path: "./page.ts:clearPageIndex"
events:
- page:saved
- page:deleted
pageQueryProvider:
path: ./page.ts:pageQueryProvider
events:
- query:page
parseIndexTextRepublish:
path: "./page.ts:parseIndexTextRepublish"
events:
- page:index_text
2022-06-28 12:14:15 +00:00
reindexSpaceCommand:
path: "./page.ts:reindexCommand"
command:
name: "Space: Reindex"
deletePage:
path: "./page.ts:deletePage"
command:
name: "Page: Delete"
2022-09-16 12:26:47 +00:00
# Attachments
attachmentQueryProvider:
path: ./attachment.ts:attachmentQueryProvider
events:
- query:attachment
# Backlinks
2022-03-27 09:26:13 +00:00
indexLinks:
path: "./page.ts:indexLinks"
events:
- page:index
linkQueryProvider:
path: ./page.ts:linkQueryProvider
events:
- query:link
2022-03-27 09:26:13 +00:00
renamePage:
path: "./page.ts:renamePage"
command:
name: "Page: Rename"
2022-04-10 09:04:07 +00:00
mac: Cmd-Alt-r
key: Ctrl-Alt-r
2022-12-13 08:49:31 +00:00
page: ""
2022-03-27 09:26:13 +00:00
pageComplete:
2022-03-29 10:13:46 +00:00
path: "./page.ts:pageComplete"
events:
- editor:complete
2022-09-06 12:36:06 +00:00
# Commands
commandComplete:
path: "./command.ts:commandComplete"
events:
- editor:complete
2022-09-06 12:36:06 +00:00
# Item indexing
indexItem:
path: "./item.ts:indexItems"
events:
- page:index
itemQueryProvider:
path: "./item.ts:queryProvider"
events:
- query:item
# Navigation
2022-03-27 09:26:13 +00:00
linkNavigate:
path: "./navigate.ts:linkNavigate"
command:
name: Navigate To page
key: Ctrl-Enter
mac: Cmd-Enter
clickNavigate:
path: "./navigate.ts:clickNavigate"
events:
- page:click
navigateHome:
path: "./navigate.ts:navigateCommand"
command:
name: "Navigate: Home"
key: "Alt-h"
2022-08-02 10:43:39 +00:00
page: ""
2022-06-28 12:14:15 +00:00
2022-07-04 09:38:05 +00:00
# Hashtags
indexTags:
path: "./tags.ts:indexTags"
events:
- page:index
tagComplete:
path: "./tags.ts:tagComplete"
events:
- editor:complete
2022-07-04 13:43:34 +00:00
tagProvider:
path: "./tags.ts:tagProvider"
events:
- query:tag
2022-07-04 09:38:05 +00:00
2022-08-30 08:44:20 +00:00
# Anchors
indexAnchors:
path: "./anchor.ts:indexAnchors"
events:
- page:index
anchorComplete:
path: "./anchor.ts:anchorComplete"
events:
- editor:complete
2022-06-28 12:14:15 +00:00
# Template commands
insertTemplateText:
path: "./template.ts:insertTemplateText"
applyLineReplace:
path: ./template.ts:applyLineReplace
insertFrontMatter:
redirect: insertTemplateText
2022-05-06 16:55:04 +00:00
slashCommand:
name: front-matter
description: Insert page front matter
value: |
---
|^|
---
makeH1:
redirect: applyLineReplace
slashCommand:
name: h1
description: Turn line into h1 header
match: "^#*\\s*"
replace: "# "
makeH2:
redirect: applyLineReplace
slashCommand:
name: h2
description: Turn line into h2 header
match: "^#*\\s*"
replace: "## "
makeH3:
redirect: applyLineReplace
slashCommand:
name: h3
description: Turn line into h3 header
match: "^#*\\s*"
replace: "### "
makeH4:
redirect: applyLineReplace
slashCommand:
name: h4
description: Turn line into h4 header
match: "^#*\\s*"
replace: "#### "
newPage:
path: ./page.ts:newPageCommand
command:
name: "Page: New"
key: "Alt-Shift-n"
2022-08-09 13:37:47 +00:00
insertHRTemplate:
redirect: insertTemplateText
2022-08-09 13:37:47 +00:00
slashCommand:
name: hr
description: Insert a horizontal rule
value: "---"
insertTable:
redirect: insertTemplateText
slashCommand:
name: table
description: Insert a table
boost: -1 # Low boost because it's likely not very commonly used
value: |
| Header A | Header B |
|----------|----------|
| Cell A|^| | Cell B |
2022-05-06 16:55:04 +00:00
quickNoteCommand:
path: ./template.ts:quickNoteCommand
command:
2022-07-06 10:18:33 +00:00
name: "Quick Note"
2022-05-06 16:55:04 +00:00
key: "Alt-Shift-n"
2022-07-06 10:18:33 +00:00
priority: 1
dailyNoteCommand:
path: ./template.ts:dailyNoteCommand
command:
name: "Open Daily Note"
key: "Alt-Shift-d"
2022-11-02 08:06:30 +00:00
weeklyNoteCommand:
path: ./template.ts:weeklyNoteCommand
command:
name: "Open Weekly Note"
key: "Alt-Shift-w"
instantiateTemplateCommand:
path: ./template.ts:instantiateTemplateCommand
command:
name: "Template: Instantiate Page"
insertSnippet:
path: ./template.ts:insertSnippet
command:
name: "Template: Insert Snippet"
slashCommand:
name: snippet
description: Insert a snippet
insertTodayCommand:
path: "./template.ts:insertTemplateText"
2022-06-28 12:14:15 +00:00
slashCommand:
name: today
description: Insert today's date
value: "{{today}}"
insertTomorrowCommand:
path: "./template.ts:insertTemplateText"
2022-06-28 12:14:15 +00:00
slashCommand:
name: tomorrow
description: Insert tomorrow's date
value: "{{tomorrow}}"
2022-06-28 12:14:15 +00:00
# Text editing commands
quoteSelectionCommand:
path: ./text.ts:quoteSelection
command:
name: "Text: Quote Selection"
2022-07-04 13:51:04 +00:00
key: "Ctrl-Shift-."
mac: "Cmd-Shift-."
2022-06-23 15:59:18 +00:00
listifySelection:
path: ./text.ts:listifySelection
command:
name: "Text: Listify Selection"
key: "Ctrl-Shift-8"
mac: "Cmd-Shift-8"
2022-06-23 15:59:18 +00:00
numberListifySelection:
path: ./text.ts:numberListifySelection
command:
name: "Text: Number Listify Selection"
2022-07-10 15:51:34 +00:00
linkSelection:
path: ./text.ts:linkSelection
command:
name: "Text: Link Selection"
key: "Ctrl-Shift-k"
mac: "Cmd-Shift-k"
bold:
path: ./text.ts:wrapSelection
command:
name: "Text: Bold"
key: "Ctrl-b"
mac: "Cmd-b"
wrapper: "**"
italic:
path: ./text.ts:wrapSelection
command:
name: "Text: Italic"
key: "Ctrl-i"
mac: "Cmd-i"
wrapper: "_"
2022-12-27 09:49:16 +00:00
strikethrough:
path: ./text.ts:wrapSelection
command:
name: "Text: Strikethrough"
key: "Ctrl-Shift-s"
mac: "Cmd-Shift-s"
wrapper: "~~"
marker:
path: ./text.ts:wrapSelection
command:
name: "Text: Marker"
key: "Alt-m"
wrapper: "=="
2022-06-28 12:14:15 +00:00
# Refactoring Commands
extractToPageCommand:
path: ./refactor.ts:extractToPage
command:
name: "Extract text to new page"
2022-06-28 12:14:15 +00:00
# Plug manager
updatePlugsCommand:
path: ./plugmanager.ts:updatePlugsCommand
command:
name: "Plugs: Update"
key: "Ctrl-Shift-p"
mac: "Cmd-Shift-p"
2022-06-29 13:02:53 +00:00
getPlugHTTPS:
path: "./plugmanager.ts:getPlugHTTPS"
events:
- get-plug:https
getPlugGithub:
path: "./plugmanager.ts:getPlugGithub"
events:
- get-plug:github
2022-07-23 18:57:59 +00:00
getPlugGithubRelease:
path: "./plugmanager.ts:getPlugGithubRelease"
events:
- get-plug:ghr
2022-11-20 09:56:52 +00:00
addPlugCommand:
path: ./plugmanager.ts:addPlugCommand
command:
name: "Plugs: Add"
2022-06-28 12:14:15 +00:00
# Debug commands
parseCommand:
path: ./debug.ts:parsePageCommand
command:
name: "Debug: Parse Document"
2023-05-29 07:56:47 +00:00
resetClientCommand:
path: ./debug.ts:resetClientCommand
command:
name: "Debug: Reset Client"
versionCommand:
path: ./help.ts:versionCommand
command:
name: "Help: Version"
gettingStartedCommand:
path: ./help.ts:gettingStartedCommand
command:
name: "Help: Getting Started"
# Link unfurl infrastructure
unfurlLink:
path: ./link.ts:unfurlCommand
command:
name: "Link: Unfurl"
key: "Ctrl-Shift-u"
mac: "Cmd-Shift-u"
contexts:
- NakedURL
# Title-based link unfurl
titleUnfurlOptions:
path: ./link.ts:titleUnfurlOptions
events:
- unfurl:options
titleUnfurl:
path: ./link.ts:titleUnfurl
events:
- unfurl:title-unfurl
2023-01-21 12:37:55 +00:00
embedWidget:
path: ./embed.ts:embedWidget
codeWidget: embed
# Random stuff
statsCommand:
path: ./stats.ts:statsCommand
command:
name: "Stats: Show"
# Cloud pages
readPageCloud:
2022-09-12 12:50:37 +00:00
path: ./cloud.ts:readFileCloud
pageNamespace:
pattern: "💭 .+"
2022-09-12 12:50:37 +00:00
operation: readFile
writePageCloud:
path: ./cloud.ts:writeFileCloud
pageNamespace:
pattern: "💭 .+"
operation: writeFile
getPageMetaCloud:
2022-09-12 12:50:37 +00:00
path: ./cloud.ts:getFileMetaCloud
pageNamespace:
pattern: "💭 .+"
2022-09-12 12:50:37 +00:00
operation: getFileMeta
2023-01-23 17:52:17 +00:00
# Vim
toggleVimMode:
path: "./vim.ts:toggleVimMode"
command:
name: "Editor: Toggle Vim Mode"
loadVimRc:
path: "./vim.ts:loadVimRc"
command:
name: "Editor: Vim: Load VIMRC"
events:
- editor:modeswitch