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

    pawelel

    11/12/2022, 6:37 PM
    Where are the recent Dendron Workspaces stored?
  • p

    pawelel

    11/12/2022, 6:38 PM
    or how to get rid of those old locations?
  • m

    Mat

    11/12/2022, 7:00 PM
    It should show up in your
    %userprofile%\.dendron\meta.json
    (or
    ~/.dendron/...
    on non windows OS). If you mean the workspace list, that shows up when pressing
    Ctrl + R
    instead: When you hover over those there is an
    x
    icon on the right. That deletes it from the recent list.
  • p

    pawelel

    11/12/2022, 7:01 PM
    heh, i reinstalled all vscode and removed all plugins 😄
  • p

    pawelel

    11/12/2022, 7:11 PM
    No, it doesn't seems to work There is no "x" and Ctrl+R enables selection picker:
  • m

    Mat

    11/12/2022, 7:13 PM
    No, the
    %userprofile%
    is for the Dendron list. The
    Ctrl+R
    is the VScode list.
  • p

    pawelel

    11/12/2022, 7:18 PM
    Even after removing vscode folder and extensions folder, reinstallation of vscode with Dendron made this list appeared again
  • p

    pawelel

    11/12/2022, 7:20 PM
    Clicking those links is causing an error message:
  • p

    pawelel

    11/12/2022, 7:21 PM
    ah ok
  • p

    pawelel

    11/12/2022, 7:21 PM
    i can see .dendron
  • m

    Mat

    11/12/2022, 7:21 PM
    Oh, ok.. Thread not necessary then ^^
  • p

    pawelel

    11/12/2022, 7:22 PM
    uff 😄
  • u

    ~~

    11/12/2022, 10:49 PM
    Hi! I found this startup on YCombinator and was interested in interning here sometime in the future. Does Dendron take interns, and if so, how can I apply? Thank you!
  • p

    pawelel

    11/13/2022, 7:45 AM
    Hi, should the dendron-code-snippets be added to .gitignore?
  • p

    pawelel

    11/13/2022, 9:19 AM
    How to make root backlink to point username.github.io/myAddress? It points to the root username.github.io I'll try with customHeaderPath didn't work
  • j

    JohnMi

    11/13/2022, 10:13 AM
    hi, was anybody able to apply custom colours for markdown preview inside Dendron? I have tried everything possible but didn't work. 1. create
    custom.css
    file in Dendron's root folder (under
    .vscode
    folder) 2. via settings,
    preview:styles
    option I added the relative path of
    custom.css
    3.
    reload window
    &
    reload index
    i also disabled any other extension but nothing
  • j

    JohnMi

    11/13/2022, 10:14 AM
    https://code.visualstudio.com/Docs/languages/markdown#_using-your-own-css
  • p

    pawelel

    11/13/2022, 10:29 AM
    root points to wrong address on github pages, I'm unable to change this behavior assetsPrefix: /MyWorld siteUrl: https://pawelel.github.io/MyWorld
  • d

    doctorboy

    11/13/2022, 12:30 PM
    Hi everyone, do you guys know if export pod v2 to notion is working? I can't make it work, and I am getting the
    could not find the page with ID:
    . I've added a database to the page, and I've connected the page with the integration, but still no success. I've also noticed the following: in the error, four hyphens are being added to the ID, whilst in the configuration and notion shared link, the hyphens don't appear. Not sure if this is having any kind of influence. Thanks for any help.
  • p

    Preston

    11/13/2022, 6:23 PM
    Hey everyone, I'm in the middle of refactoring my hierarchy. I noticed in the refactor preview I'm renaming files down the line I do not want. Anyway to fix this?
    Copy code
    engine.unreal-engine.md    -->    engines.unreal-engine.md
    engine.source2.arch.md    -->    engines.source2.arch.md
    engine.source2.hollow-block.md    -->    engines.source2.hollow-block.md
    engine.source2.pivot-manipulation.md    -->    engines.source2.pivot-manipulation.md
    engine.unreal-engine.best-practices.md    -->    engines.unreal-engine.best-practices.md
    engine.unreal-engine.blueprint-interface.md    -->    engines.unreal-engine.blueprint-interface.md
    engine.unreal-engine.cpp-and-blueprints.md    -->    engines.unreal-engine.cpp-and-blueprints.md
    engine.unreal-engine.directory.md    -->    engines.unreal-engine.directory.md
    ----------------------------------------------------------------------------------------------
    here
    -----------------------------------------------------------------------------------
    engine.unreal-engine.post-process-volume.md    -->    engines.unreal-engine.post-process-volume.md
    lexicon.unreal-engine.actor.md    -->    lexicon.unreal-engines.actor.md
    lexicon.unreal-engine.ai-controller.md    -->    lexicon.unreal-engines.ai-controller.md
    lexicon.unreal-engine.casting.md    -->    lexicon.unreal-engines.casting.md
    lexicon.unreal-engine.character.md    -->    lexicon.unreal-engines.character.md
    lexicon.unreal-engine.component.md    -->    lexicon.unreal-engines.component.md
    lexicon.unreal-engine.pawn.md    -->    lexicon.unreal-engines.pawn.md
  • p

    Preston

    11/13/2022, 6:23 PM
    lexicon.unreal-engines.character.md
  • p

    Preston

    11/13/2022, 6:24 PM
    It shouldn't be affecting anything beyond the parent node. engine. all files should just be renamed to 'engines.whatever.whatever'
  • p

    Preston

    11/13/2022, 6:26 PM
    Spending some time spring cleaning and this is all relics of the orignal vault I made before I knew how Dendron worked at all, so I made little to no backlinks
  • p

    Preston

    11/13/2022, 6:27 PM
    mm, iguess I'll have to make them anyway, might as well do that and rename it
  • p

    pawelel

    11/13/2022, 7:46 PM
    You could use batch rename - vscode plugin https://marketplace.visualstudio.com/items?itemName=JannisX11.batch-rename-extension
  • p

    pawelel

    11/13/2022, 7:47 PM
    I'm using it from time to time and prefer over PS+excel or PowerToys Power rename
  • m

    Mat

    11/13/2022, 10:16 PM
    You can use Regular Expressions to limit the pattern:
    ^engine\.(.+)
    and then replace with
    engines.$1
    . Didn't test it yet, but I think it is what you were looking for. Check this for an explanation of the pattern: https://regex101.com/r/AgTcVB/1
  • n

    nickolay-kond

    11/14/2022, 12:27 AM
    How to open note in a new tab, upon lookup? Visual studio Code appears to only have https://stackoverflow.com/questions/46028295/how-to-pick-from-a-list-of-previously-opened-files-in-visual-studio-code most recently used out of the notes that were opened. And default behavior of dendron lookup appears to be to open notes inside the same tab, which renders
    View: Show All Editors By Most Recently Used
    useless (since it will always be the same file).
  • m

    Mat

    11/14/2022, 12:41 AM
    You could set
    workbench.editor.enablePreview
    to
    false
    in the vscode settings of your Dendron workspace. This prevents tab reuse and opens multiple notes (if that is what you meant) Of course it would be better, if Dendron could open multiple tabs no matter what the setting is
  • n

    nickolay-kond

    11/14/2022, 12:49 AM
    Thank you Mat! This does the trick of being able to use most recently opened.
1...730731732...757Latest