hikchoi
04/22/2021, 9:59 PMhikchoi
04/22/2021, 10:00 PMmanunamz
04/22/2021, 10:00 PMmanunamz
04/22/2021, 10:11 PMhikchoi
04/22/2021, 10:13 PMmanunamz
04/22/2021, 10:49 PMmanunamz
04/22/2021, 11:24 PM. name-spacing, but what's Dendron's long-term plan for impending filename length limits? (These would indeed be huge vaults)kevins8
04/23/2021, 12:18 AMredsolver
04/23/2021, 7:41 AMpro.my-project.md I put this:
markdown
[Open Project in VS Code](vscode://file/home/redsolver/my/project)
When I click on that link using the VS Code Editor, it replaces the current VS Code window with the project I want to open. The problem here is, that I instead want to open a new window with that project and keep the Dendron window open. Does anyone here have an idea how that could be accomplished?fudo
04/23/2021, 9:25 AMhikchoi
04/23/2021, 9:27 AMredsolver
04/23/2021, 9:41 AM[Open Project](file://home/redsolver/dev/vscode_launcher.sh), but it always tries to open the script relative to the Dendron pathfudo
04/23/2021, 10:48 AMjson
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Open in New Code Window",
"type": "process",
"command": "${execPath}",
"args": [
"-n", "${selectedText}"
]
}
]
}
And adding a keyboard shortcut to the user Keybinding.json:
json
{
"key": "ctrl+h",
"command": "workbench.action.tasks.runTask",
"args": "Open in New Code Window"
}
You can adjust the shortcut to your likingteflinfoki
04/23/2021, 12:15 PMKiran
04/23/2021, 12:32 PMKiran
04/23/2021, 12:32 PMteflinfoki
04/23/2021, 12:38 PMKiran
04/23/2021, 12:38 PMKiran
04/23/2021, 12:39 PMteflinfoki
04/23/2021, 12:39 PMspex66
04/23/2021, 4:31 PMdendron.topic.refs
in last chapter (see below)
1. the publish link shows a preview on hover and with F12 (or ctrl-enter) jumps to the target
2. the configuration link shows a preview on hover too, but F12 responds with an error message popup: "selection is not a valid link", but it works in preview when clicking the rendered link dendron.topic.publishing.configuration.md
a) someone able to reproduce
b) and if yes => explain why?
## Publishing
When you [[publish|dendron.topic.publishing]] a note with a note reference, Dendron will embed the content of the reference in the page. If the content is part of a published page as specified by the publishing [[configuration|dendron.topic.publishing.configuration]], dendron will include a link to the page. If not, Dendron will embed the content without a link. If the referenced content is not publishable (eg. `published: false` set on frontmatter), dendron will generate a custom [[404 link|dendron.topic.publishing.features#selective-publication]].hikchoi
04/23/2021, 4:39 PMspex66
04/23/2021, 4:40 PM[[...]] in the editor mode, not selected text withinhikchoi
04/23/2021, 4:41 PMhikchoi
04/23/2021, 4:42 PMspex66
04/23/2021, 4:43 PMhikchoi
04/23/2021, 4:43 PM[[publish|dendron.topic.publishing]] and [[configuration|dendron.topic.publishing.configuration]] will get me to both the noteshikchoi
04/23/2021, 4:45 PMspex66
04/23/2021, 4:47 PMhikchoi
04/23/2021, 4:48 PM