https://www.dendron.so/ logo
Join Discord
Powered by
# questions
  • h

    hulke

    03/09/2022, 11:16 AM
    Hello guys i'm new to dendron and was wondering if there is any example project on github so i can understand best practices for creating schemas, hierarchy modeling and such? Thanks and sorry if i'm duplicating
  • d

    dex

    03/09/2022, 11:48 AM
    In the same ๐Ÿšฃโ€โ™‚๏ธ but a few steps ahead: - This was a great first step: https://wiki.dendron.so/notes/5U4eAiqshI67VxIL40KWH/ - Then copying from https://github.com/dendronhq/schema-library and https://github.com/Bassmann/Dendron-schemas
  • h

    hulke

    03/09/2022, 11:51 AM
    Thanks a lot!
  • d

    dex

    03/09/2022, 12:29 PM
    Anyone been able to use Obsidian Mobile + iCloud (for sync) with a Dendron workspace?
  • k

    kevins8

    03/09/2022, 3:07 PM
    i know folks have been using working copy, not sure about icloud
  • a

    andrey-jef

    03/09/2022, 4:35 PM
    I use this combo Obsidian iCloud sync to edit Dendron vault on iOS every day
  • d

    dex

    03/09/2022, 4:43 PM
    Do you have any notes on how to set up?
  • s

    seadude

    03/09/2022, 5:10 PM
    Can we safely
    .gitignore
    the
    .vscode
    directory?
  • s

    seadude

    03/09/2022, 5:11 PM
    (In a Remove Vault)
  • k

    kevins8

    03/09/2022, 5:35 PM
    yes
  • a

    andrey-jef

    03/09/2022, 6:49 PM
    Nah. Itโ€™s not complex. U just need to initialize your Dendron workspace as a new folder inside your Obsidian vault, located in your iCloud folder. Thatโ€™s all
  • d

    d1onys1us

    03/09/2022, 10:21 PM
    does there exist the concept of subtasks in task notes , as in i can reference a task in that task note
  • d

    d1onys1us

    03/09/2022, 10:22 PM
    and make a checkbox out of it, and it'll mark the linked sub-task note
  • k

    kevins8

    03/09/2022, 10:35 PM
    you can create another task note inside a task note and that becomes a subtask
  • j

    johndendron29

    03/09/2022, 10:43 PM
    You can set the lookupConfirmVaultOnCreate: true in dendron.yml. This will prompt which vault to create the note in. https://wiki.dendron.so/notes/f83c1d87-eac0-48f3-a5cf-8a69989d8ec1/#lookupconfirmvaultoncreate New notes are also created within the context of the note you are currently looking at within your editor and the vault that note is stored in: https://wiki.dendron.so/notes/98JMUIQUEKfU83f0MgMbF/
  • s

    Saine

    03/10/2022, 1:13 AM
    tags like
    sys.dm_io_virtual_file_stats
    are not possible? even if I place them in Frontmatter?
  • s

    SeriousBug

    03/10/2022, 1:14 AM
    You can absolutely create and use a tag like that. Are you encountering a bug?
  • s

    Saine

    03/10/2022, 1:17 AM
    not sure. still try to figure this out.
    sys
    is part of the hierarchy now
  • s

    SeriousBug

    03/10/2022, 1:18 AM
    Tags are notes, so you'll want to create the note
    tags.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"]
  • s

    Saine

    03/10/2022, 1:22 AM
    looks like it's working. but tags being individual notes, still creating dot separated hierarchy is confusing
  • s

    Saine

    03/10/2022, 1:53 AM
    is every extension update also a cli update?
  • s

    ScriptAutomate

    03/10/2022, 2:05 AM
    Correct, as in: every weekly release results in both an updated to the extension and the CLI
  • c

    codeluggage

    03/10/2022, 8:09 AM
    Is there a way to have
    "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 ๐Ÿ˜ฌ
  • c

    ccamara

    03/10/2022, 8:35 AM
    Hello, I am using dendron in two different machines. One works perfectly, and the other doesn't. As starters, whenever I create or open file for fist time, I am seeing an error stating "Cannot read property 'title' of undefined". If I close and reopen, it will not show up, but this might be pointing to some problem. Also, I believe it's related to the problem I reported some days ago here: https://discord.com/channels/717965437182410783/735365126227493004/947773426062467113 -> The daily journal was working greate yesterday in another machine, I synced the workspace from computer A yesterday, and Synced it today in computer B, but daily journal template is not working anymore
    j
    • 2
    • 17
  • b

    blue_yellow

    03/10/2022, 10:02 AM
    Dear there, I have a newbie question about Note Graph to seek your advice: How can I save the graph as a .png or any format within VSC?
  • h

    hikchoi

    03/10/2022, 11:58 AM
    Go To Note actually takes an argument to open it to the side. Try adding this in your `keybindings.json`:
    Copy code
    ...
      {
        "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?
  • c

    codeluggage

    03/10/2022, 12:24 PM
    Thank you! Yep here you go: https://github.com/dendronhq/dendron/issues/2554
  • d

    Daniel Silverstone

    03/10/2022, 2:07 PM
    Could someone help me to construct a keybinding which will take the selected text and automatically create a note at $node.$highlight-slug - Effectively highlight + ctrl+L + tick the replace-with-link thing but all in one keypress?
  • d

    Daniel Silverstone

    03/10/2022, 2:07 PM
    I've never customised vscode in this way before :/
  • k

    kevins8

    03/10/2022, 3:34 PM
    we don't support that today but if you have screenshot software you can take a screenshot of it
1...565566567...757Latest