https://www.dendron.so/ logo
Join Discord
Powered by
# feedback
  • b

    banjara

    02/01/2022, 12:04 PM
    same here. i am in the middle of completing a project so i took a hiatus from dendron onboarding and this message pops up.. how much is dendron tracking?
  • k

    kevins8

    02/01/2022, 4:22 PM
    we have that prompt if dendron has been inactive for a few weeks
  • b

    banjara

    02/01/2022, 5:46 PM
    i shudder at the thought if all my extensions started doing that... "hey extension installed but not used" == "hey variable declared but not used.. yet"
    k
    l
    • 3
    • 3
  • a

    aleksey

    02/01/2022, 5:59 PM
    Yes, probably that behaviour less than ideal for other extensions, but if you are not using you note-taking tool for a long time, something is not right. Maybe the timing could be tweaked a bit and this popup should be shown during the first several month (if there is weeks of inactivity) after Dendron is first installed.
  • k

    kevins8

    02/01/2022, 6:01 PM
    inactive usage prompt
  • v

    vishal.gandhi

    02/02/2022, 2:26 AM
    Need help with steps to be performed on remving dendron workkspace from
    git sync
    and move to
    OneDrive
    ?
  • s

    SeriousBug

    02/02/2022, 2:28 AM
    You can copy the whole workspace folder to OneDrive. If you want to remove git, you can also delete the
    .git
    folder inside of your Dendron workspace.
  • s

    seadude

    02/02/2022, 9:26 PM
    Wondering your thoughts on changing the word "workspace" to "repo" here... - Personally, I'm confused by the term "workspace" mostly because BOTH VS Code and Dendron use it AND I don't know if theres a difference - It confused me further when we call the (cloned) repo a "Workspace" too. - Anyone else feel the same/different?
  • s

    SeriousBug

    02/02/2022, 9:32 PM
    I don't know what's the best way to describe the current state of it, but we're moving towards a simpler system & terminology where we only have vaults, and one repository matches one vault. I think that would be simpler to explain and think about. I'll have an RFC for that tonight, I'll make sure to tag you to get your feedback.
  • b

    Bassmann

    02/03/2022, 7:00 PM
    As far as I understand it at the moment it is called workspace because a Dendron workspace is a vscode workspace
  • s

    SeriousBug

    02/03/2022, 7:02 PM
    The RFC I promised: https://docs.dendron.so/notes/aOOBYTowLEKJDEtLWFiHb/ And the discussion for it: https://github.com/dendronhq/dendron/discussions/2349#discussioncomment-2106014
  • s

    seadude

    02/03/2022, 7:13 PM
    Right, but if you read the text in the screenshot, the instructions highlighted do not refer to VSCode/Dendron "Workspaces", but rather actual git repositories.
  • b

    banjara

    02/03/2022, 8:47 PM
    note name won't allow me to use
    /
    .. and
    \
    won't allow me upload files to onedrive 🀬.. now i have to rename all my files using refactor.. which relies on regex which means the possibility of shooting myself in the foot
  • b

    banjara

    02/03/2022, 8:53 PM
    can anyone give me the regex for filename like
    xyz.abc\1.def\2.md
    to be renamed to like
    xyz.abc-1.def-1
    ?.. i want to replace each
    \
    in the hierarchy name to
    -
    ...also can i just use mv + regex to rename files in shell instead of in vs code?
  • f

    foureyedsoul

    02/03/2022, 9:07 PM
    I don't already have that regex, but https://regex101.com/ has saved my feet from inexperienced misfires many times! Maybe it'll help you write & test it?
  • b

    banjara

    02/03/2022, 9:14 PM
    i used a workaround.. in match text
    \\
    and in replace text
    -
    ....i had to do this three times because it won't catch the
    \
    in further hierarchies
  • o

    Oops365

    02/03/2022, 11:43 PM
    Copying code snippets from the Dendrone Note Preview seems to lead to formatting issues, including spacing and html entities showing up as entity literals:
    Copy code
    # Note Preview Result
    async <TResults, TBody = unknown>
    
    # Markdown Preview Result
    async <TResults, TBody = unknown>
  • b

    banjara

    02/04/2022, 12:07 PM
    Dendron delete node doesn't delete a
    [[...]]
    text in the other markdowns.. it just de links them
  • b

    banjara

    02/06/2022, 7:42 AM
    instructions on how to create a template and use it need to be clearer...
    Copy code
    version: 1
    imports: []
    schemas:
      - id: customs-act
        title: customs-act
        parent: root
        template: customs-act.template
        children:
          - pattern: '*'
            children:
              - pattern: sro-[0-9]+@....
                children:
                  - pattern: sro-[0-9]+@....
    i built a schema and a template but it doesn't work beyond depth 1 i.e. root note -> child note.. and does not work beyond that... also.. it needs to be clearer if i need to use
    Dendron: Insert Note
    or
    Dendron: Lookup
    to create a note with the template?
  • s

    SeriousBug

    02/06/2022, 8:00 AM
    The template will automatically apply if it matches. You do need to specify the template at each level though I think, so you need to add
    template: customs-act.template
    to each level here.
  • s

    SeriousBug

    02/06/2022, 8:02 AM
    The patterns can also be a bit confusing, but they are not regex. They are extended bash globs. For example, if by
    [0-9]+
    you mean "one or more digits", that actually needs to be
    +([0-9])
    instead.
  • s

    SeriousBug

    02/06/2022, 8:04 AM
    We do have some documentation for how the patterns work that should come out along with the next release (I wrote it a few days ago). You can read it already here: https://github.com/dendronhq/dendron-site/commit/530aba9d534e8074dc3166135ac7d9c2620f4668 Schemas are a bit difficult to get sometimes, sorry about that! We're trying to improve our documentation, so thanks for the feedback.
  • b

    banjara

    02/06/2022, 8:30 AM
    i don't know the number of levels beforehand... i need to create a schema that applies my template at each level regardless of how many are created... but creating a schema is difficult.. i was only able to create this one from the wiki section on how to auto create a schema from a few already created notes
    f
    • 2
    • 11
  • f

    foureyedsoul

    02/06/2022, 8:14 PM
    Schemas Feedback
  • a

    aleksey

    02/09/2022, 5:36 PM
    @User! It's CROP time (every other Wednesday) πŸ™‚ Please vote for your favored community issue πŸ‘¨β€πŸŒΎπŸ‘©β€πŸŒΎ: 1. [Add commands to generate relative daily notes](https://github.com/dendronhq/dendron/issues/2242) 2. [Navigating back to previous notes linking the current one in the MD preview pane](https://github.com/dendronhq/dendron/issues/236) 3. [Add more template variables](https://github.com/dendronhq/dendron/issues/2241) 4. None of these (if there's an issue you'd like to add to rotation, please reply with a Github issue). To vote, respond with a 1️⃣ 2️⃣ 3️⃣ or 4️⃣ to this message. Voting closes Monday at noon Pacific Time.
    • 1
    • 1
  • b

    banjara

    02/15/2022, 6:01 AM
    dendron just died on me... possibly vscodium fault..
    Copy code
    [2022-02-15 10:46:07.954] [sharedprocess] [warning] No ptyHost heartbeat after 6 seconds
    [2022-02-15 10:46:12.970] [sharedprocess] [error] No ptyHost heartbeat after 12 seconds
    which logs do i send?
  • b

    banjara

    02/15/2022, 6:48 AM
    on an unrelated note: almost sure dendron is not supposed to do this after Refactor Hierarchy. i have to keep closing the text editor and reopening it to get the correct graph
  • b

    banjara

    02/15/2022, 6:58 AM
    bug 3: while trying to create a note using Ctrl + L ...
    error while running command: Request failed with status code 500
    .... it won't let me using the word "market" in the note name
  • s

    Silviu

    02/15/2022, 10:23 PM
    Hi @User @User , thanks again for the amazing work. I had a quick question about the vision of dendron with regards to its integration into vscode. I have noticed that changing some flags in the usual settings.json of VSCode, such as "Default Journal Add Behaviour", is deprecated. Instead, it is recommended to use dendron.yml for that. Is it the plan to have more settings moved into Dendron's own files? I would argue that the tight integration of Dendron into the normal VSCode workflow is very appealing.
  • k

    kevins8

    02/15/2022, 11:58 PM
    hey @User - dendron will always have first class support for vscode. that being said, we also plan on making dendron available through other clients (eg. CLI, other IDEs, the web) which is why we're moving settings to
    dendron.yml
    . also, no need to ping
    DendronTeam
    , we scan feedback a few times a day πŸ™‚
1...484950...78Latest