hulke
03/09/2022, 11:16 AMdex
03/09/2022, 11:48 AMhulke
03/09/2022, 11:51 AMdex
03/09/2022, 12:29 PMkevins8
03/09/2022, 3:07 PMandrey-jef
03/09/2022, 4:35 PMdex
03/09/2022, 4:43 PMseadude
03/09/2022, 5:10 PM.gitignore
the .vscode
directory?seadude
03/09/2022, 5:11 PMkevins8
03/09/2022, 5:35 PMandrey-jef
03/09/2022, 6:49 PMd1onys1us
03/09/2022, 10:21 PMd1onys1us
03/09/2022, 10:22 PMkevins8
03/09/2022, 10:35 PMjohndendron29
03/09/2022, 10:43 PMSaine
03/10/2022, 1:13 AMsys.dm_io_virtual_file_stats
are not possible? even if I place them in Frontmatter?SeriousBug
03/10/2022, 1:14 AMSaine
03/10/2022, 1:17 AMsys
is part of the hierarchy nowSeriousBug
03/10/2022, 1:18 AMtags.sys.dm_io_virtual_file_stats
. A tag for this in the body will look like #sys.dm_io_virtual_file_stats
. And in the frontmatter tags: ["sys.dm_io_virtual_stats"]
Saine
03/10/2022, 1:22 AMSaine
03/10/2022, 1:53 AMScriptAutomate
03/10/2022, 2:05 AMcodeluggage
03/10/2022, 8:09 AM"splitType": "horizontal"
for dendron.gotoNote
to have a shortcut that follows the wikilink at the caret to a note in the other split?
From my searches in docs and in chat it looks like this is only for `dendron.lookupNote`: https://wiki.dendron.so/notes/ad270a7d-2aed-4273-8319-eb6536e38b29/#horizontal
If that's the case, how would I make dendron.lookupNote
prefill with the wikilink at the caret? Still not adept at changing the schema to do what I want ๐ฌccamara
03/10/2022, 8:35 AMblue_yellow
03/10/2022, 10:02 AMhikchoi
03/10/2022, 11:58 AM...
{
"key": "{key combo you want}",
"command": "dendron.gotoNote",
"when": "editorFocus",
"args": {
"column": -2
}
}
...
It is taking the value of ViewColumn
enum that the VSCode API provides, and in this case it's -2
. See https://code.visualstudio.com/api/references/vscode-api#ViewColumn if you want to specify any other columns.
The argument is used internally so the value it takes isn't user friendly ๐
Would you mind opening a feature request to expose this with a better name and properly document it?codeluggage
03/10/2022, 12:24 PMDaniel Silverstone
03/10/2022, 2:07 PMDaniel Silverstone
03/10/2022, 2:07 PMkevins8
03/10/2022, 3:34 PM