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

    Gander7

    04/13/2022, 6:41 PM
    Kk, I need it to start integrating personal into work. I have a workaround for now that, after I clone it, I set the git push url to something invalid
    git remote set-url --push never_gonna_give_you_up
  • s

    SeriousBug

    04/13/2022, 6:42 PM
    Oh, for that you could also set the
    sync: pull
    for that vault so workspace sync will still pull changes, but won't try to push them
  • a

    alexis<3

    04/13/2022, 9:09 PM
    i just added a new tag using
    tags: issues.Closed
    in the front matter
  • a

    alexis<3

    04/13/2022, 9:10 PM
    then i used
    ctrl+p >go to note
    to create the note
  • a

    alexis<3

    04/13/2022, 9:10 PM
    but its not showing up in the tree view
  • a

    alexis<3

    04/13/2022, 9:10 PM
    what report can i collect to help?
  • a

    alexis<3

    04/13/2022, 9:10 PM
    reloading the index does not fix the issue
  • p

    patchwork

    04/13/2022, 10:48 PM
    Update from 0.88->0.90 broke graphstyles I think?
    j
    • 2
    • 1
  • k

    kevins8

    04/13/2022, 11:19 PM
    thanks for the notification. do you have a repro or more information? also cc @Joshi on ☝️
  • p

    patchwork

    04/14/2022, 12:00 AM
    repro? Repo? Can share my graphstyle css. Coworker told me about the issue but I haven't really explored it, besides confirming the graph no longer uses my custom style.
    Copy code
    css
    /* Any graph node */
    node {
        background: cornsilk;
        color: cornsilk;
      }
    
    /* Any graph edge */
    /* edge {} */
    
    /* Any selected node */
    :selected {
        shape-rendering: round-pentagon;
        background-color: aquamarine;
        color: aquamarine;
    }
    
    /* Any parent nodes (local note graph only) */
    .parent {
        color: coral;
        background-color: coral;
    }
    
    /* Any link connection edge */
    .links {
        curve-style: unbundled-bezier;
    }
    
    /* Any hierarchy connection edge */
    .hierarchy {
        curve-style: taxi;
        color: cornflowerblue;
    }
  • t

    Tika

    04/14/2022, 6:09 AM
    what is this about in response to trying to create a new note from lookup?
  • s

    SeriousBug

    04/14/2022, 6:10 AM
    That means the Dendron server had an internal error. Could you run
    Dendron:Dev: Diagnostic Report
    and share the output? I'll take a look to see if it has the error
  • t

    Tika

    04/14/2022, 6:11 AM
    it only happens for this specific request. foo.bar does not work but fee.bar does
  • s

    SeriousBug

    04/14/2022, 6:12 AM
    Hmm, could you try running
    Reload Index
    maybe?
  • t

    Tika

    04/14/2022, 6:12 AM
    tried restarting with no effect
  • s

    SeriousBug

    04/14/2022, 6:14 AM
    I don't see anything in the error logs either unfortunately, I'll ask the rest of the team if they have any ideas
  • m

    mihaiconstantin

    04/14/2022, 8:23 AM
    Is anyone else experiencing issues with links to files (i.e.,
    [local files](assets/think.pdf)
    ) when the path contains spaces? I tried using
    "
    or
    '
    , or escaping the path (i.e.,
    \
    ) and even replacing the spaces with
    \s
    , but the preview link still doesn't open the file.
  • s

    SeriousBug

    04/14/2022, 8:28 AM
    For spaces in the path section of the link
    ( ... )
    , you have to replace them with
    %20
    I think. But if it's happening for text part
    [ ... ]
    , I'm not sure.
  • s

    Saad C

    04/14/2022, 10:06 AM
    Hi, For some reason, I can no longer access a note when I click +CMD on its note reference link. It works on the Note preview, it is displayed and I can access the note content VS Code: Version: 1.65.2 Dendron: v0.90.0 MAC OS 12.3 (21E230)
  • t

    Tika

    04/14/2022, 1:15 PM
    Does this work? If so, how? For me this command finds nothing even if I deliberately break a wiki link just to check.
  • j

    Joshi

    04/14/2022, 2:03 PM
    In a single vault, it displays all the broken wikilinks in the vault. For multi-vault case, it finds all broken links that have a vault prefix. https://wiki.dendron.so/notes/ZeC74FYVECsf9bpyngVMU/#findbrokenlinks
  • t

    Tika

    04/14/2022, 2:05 PM
    thanks. i do not use vault prefixes. is there a way to make it look at one vault at a time or at all intra-vault links. i see a few linked missed by refactoring and want to check. or is the only way to put each vault in a temp separate workspace?
  • j

    Joshi

    04/14/2022, 2:16 PM
    I guess we do not currently support providing
    scope
    for finding broken links. Presently if there is no vault prefix and is a multi vault case, we consider it as ambiguous.
  • t

    Tika

    04/14/2022, 2:20 PM
    perhaps it could report the links that lead to nothing in any vault? they do get colored orange so the expectation would be for the parity between the checking procedures...
  • j

    Joshi

    04/14/2022, 2:29 PM
    Agree with the alternative. I think the reasoning behind this behavior of the command is to keep it in sync with `createMissingLinkedNotes`(https://wiki.dendron.so/notes/ZeC74FYVECsf9bpyngVMU#createmissinglinkednotes) which creates notes for these missing wikilinks.
  • e

    Erwyn

    04/14/2022, 3:48 PM
    Hi, I'm trying to configure the "create journal note" behaviour, and the documentation says: > note is added as child of the namespace of the current domain if it has a namespace. otherwise behaves the same as childOfDomain about the childOfDomainNamespace configuration option. I added it to my dendron.yml file but the behaviour hasn't changed, so I guess that I'm in the "otherwise" case. So, what is a namespace ? (I'm new to dendron, sorry) Also, in default{NodeType}AddBehavior what is {NodeType} ? All of those questions come from this page: https://wiki.dendron.so/notes/5c213aa6-e4ba-49e8-85c5-1bdcb33ce202/#configuration
  • b

    benhsm | Jack of N trades

    04/14/2022, 4:58 PM
    If I'm not mistaken, you can make any node of a hierarchy a namespace by modifying the corresponding schema: What this does is make the immediate children of that node recognized as part of the schema, even if they are not explicitly defined in the schema file. To my understanding, Nodetype is the type of the special note. So for journal notes,
    NodeType
    is journal, and for scratch notes it would be
    Scratch
    . I think it works this way because it's meant to be extensible to other special note types, but I'm not sure what the most current state of things is with that
  • e

    Erwyn

    04/14/2022, 4:59 PM
    ohhh I see
  • b

    benhsm | Jack of N trades

    04/14/2022, 4:59 PM
    Did you install any VSCode extensions recently? I believe there's a markdown related one that breaks that functionality
  • e

    Erwyn

    04/14/2022, 4:59 PM
    I need to look into those schema things
1...607608609...757Latest