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

    hikchoi

    05/04/2022, 10:35 AM
    Does that happen even for notes that have a body? Normally notes without a body (only frontmatter) will display "No symbols found in document" in the outline view.
  • n

    NorbertK

    05/04/2022, 11:38 AM
    Yes.
  • j

    jyeung

    05/04/2022, 1:11 PM
    Is your focus inside the preview webview, or inside vscode's editor view when you're seeing the issue? (or it happens during both?) The outline view doesn't work if your focus is in the preview tab
  • j

    josh

    05/04/2022, 1:45 PM
    got this error when starting up my dendron workspace:
    Copy code
    {
      "errno": -30,
      "syscall": "open",
      "code": "EROFS",
      "path": "/home/josh/Documents/dendron/.dendron.ws",
      "vslsStack": [
        {},
        {},
        {},
        {},
        {},
        {},
        {},
        {}
      ]
    }
    any idea what the problem might be? the file exists and contains this:
    {"version":"0.93.0","activationTime":1651601449165}
    looks like my entire mounted partition is readonly, so nothing concerning dendron alright, I figured it out, it was because of dual boot. Windows went into hibernation without me knowing it, the I just booted into Linux, but the drive was protected. Booting into windows and restarting into linux fixed it :)
  • d

    deen

    05/04/2022, 3:40 PM
    When I type
    tags: tag.dendron
    in yaml, it does not associate with tag.dendron. Only when I type
    [[tag.dendron]]
    in the body does it associate.
  • h

    hikchoi

    05/04/2022, 3:47 PM
    tags
    (instead of
    tag
    ) hierarchy is what Dendron recognizes as tags when rendering a reference as a tag. If you want to use tags in the yaml frontmatter, you would need to omit
    tags.
    Same goes for using it in the body. You can use a normal wikilink
    [[tags.dendron]]
    , or just
    #dendron
    (these two are equivalent) More on this topic: https://wiki.dendron.so/notes/8bc9b3f1-8508-4d3a-a2de-be9f12ef1821/
  • d

    deen

    05/04/2022, 3:49 PM
    I may not be clear, it should be that when I write tags in ymal, backlinks cannot be generated in those corresponding tag files.
  • h

    hikchoi

    05/04/2022, 3:50 PM
    I'm sorry. I don't think I understand the issue fully. Do you mean when you add a frontmatter tag to a note, you can't see a backlink to that note when you open the tag note?
  • d

    deen

    05/04/2022, 3:51 PM
    Yes, it is.
  • h

    hikchoi

    05/04/2022, 3:52 PM
    To clarify, do you currently have
    Copy code
    ---
    tags: tag.dendron
    ---
    in the note?
  • h

    hikchoi

    05/04/2022, 3:54 PM
    What I mean in my comment before is, you need it to be like this:
    Copy code
    ---
    tags: dendron
    ---
    if you say
    tags: tag.dendron
    in frontmatter, it will link to the note
    tags.tag.dendron.md
    .
  • h

    hikchoi

    05/04/2022, 3:55 PM
    the tag note should be
    tags.dendron
    as well. (you need the s)
  • d

    deen

    05/04/2022, 3:57 PM
    Oh, thank you, it helped me a lot~
  • d

    deen

    05/04/2022, 4:14 PM
    Is there a feature that locks a Note Preview to a file?
  • h

    hikchoi

    05/04/2022, 4:19 PM
    Note preview will render the currently active (in focus) note in VSCode. We don't have a feature that lets you lock it to a specific note. Do you mind creating a feature request for it? This way we can keep it in our backlog and track it for the future You can create a feature request here: https://github.com/dendronhq/dendron/issues/new?assignees=&labels=&template=feature_request.md&title=
  • r

    rlh1994

    05/04/2022, 4:21 PM
    There's already one here raised by myself a while ago 😃 https://github.com/dendronhq/dendron/issues/2437
  • h

    hikchoi

    05/04/2022, 4:21 PM
    Ah, I should have checked. Thanks for letting me know
  • d

    deen

    05/04/2022, 4:29 PM
    I can fix a diagram, a video, a pdf there, and then I take notes in other windows. I can change the content in another note and ![] will give me feedback on whether my changes match the context of the current note.
  • d

    deen

    05/04/2022, 4:30 PM
    Liked
  • i

    ichimga

    05/04/2022, 4:49 PM
    Hi, is this
    enableRandomlyColoredTags: false
    setting available for the editing mode in VSCode? Basically, wanting to disable visibility of the color square when writing.
  • d

    deen

    05/04/2022, 5:29 PM
    Can the window be locked to open only files under the same tree? It is somewhat similar to the current lock group function. For example, if I lock the daily tree in the window, the next files that I open below the daily tree will be opened in this window.
  • j

    johndendron29

    05/04/2022, 5:59 PM
    If you want to disable the colored tags in the editor, you can use the noRandomlyColoredTags option (by setting it to "true" in your "dendron.yml" config), which will hide the color box for all tags don't have a color explicitly set. https://wiki.dendron.so/notes/f83c1d87-eac0-48f3-a5cf-8a69989d8ec1/#norandomlycoloredtags
  • i

    ichimga

    05/04/2022, 7:25 PM
    where exactly in the dendrom.yml file do I need to write
    noRandomlyColoredTags: true
    . It's not there by default at all. And if I put it under
    preview:
    I get an error saying property is not allowed.
  • s

    SeriousBug

    05/04/2022, 7:27 PM
    You need to put it at the root, like:
    Copy code
    version: 5
    noRandomlyColoredTags: true
    commands: ...
    If you get a warning inside of the YAML file you can ignore that
  • n

    NorbertK

    05/04/2022, 7:45 PM
    The Problem occurs in the editor view UPDATE: In a clean VScode install the problem does not occur
  • v

    vaden

    05/04/2022, 9:32 PM
    Is there any way to automatically delete empty notes? My vault is littered with them!
  • s

    SeriousBug

    05/04/2022, 9:34 PM
    Can you try running the
    Dendron: Doctor
    command from the command palette, then pick the
    removeStubs
    action when prompted? It should delete all empty notes
  • a

    alexis<3

    05/04/2022, 9:35 PM
    has anyone messed with hosting mp4 files from the assets would this work?
  • v

    vaden

    05/04/2022, 9:36 PM
    hmm getting a 'no data' prompt when I run that command, doesn't look like empty notes are removed
  • s

    SeriousBug

    05/04/2022, 9:36 PM
    You could, but there isn't a nice way to link to them. You might have to add HTML into a note to insert a player.
1...627628629...757Latest