moksha
02/28/2022, 6:06 AMSeriousBug
02/28/2022, 6:11 AMcodeluggage
02/28/2022, 6:48 AMctrl+d
/ ctrl+u
after opening another note. I don't have an exact repro yet, but it seems to be view specific, so I can keep moving up/down in the other split.
1. Split vscode so 2 files are open (ctrl+d/ctrl+u works)
2. cmd+p (or cmd+o in my case) to open a file
3. pick a markdown file
4. try ctrl+d/ctrl+u, see that it doesn't work
5. go to the other split, see that ctrl+d/ctrl+u works there
These are the shortcuts I have set for this now. Been messing around with it but no success:hikchoi
02/28/2022, 7:12 AMDeveloper: Toggle Keyboard Shortcuts Troubleshooting
to see what actually gets dispatched?hikchoi
02/28/2022, 7:12 AMcodeluggage
02/28/2022, 7:14 AMcodeluggage
02/28/2022, 7:16 AMmoksha
02/28/2022, 7:37 AMSilviu
02/28/2022, 8:21 AMSilviu
02/28/2022, 8:21 AMSilviu
02/28/2022, 8:23 AMSilviu
02/28/2022, 8:23 AMccamara
02/28/2022, 8:33 AMdaily.schema.yml
, they worked for a while, but they have stopped working again.
I'm using the following config:
One dendron workspace with 3 vaults:
1. Professional
2. Personal (where I want my journals to reside)
3. Templates (where all the schemas and templates reside)
Everything is synced with several laptops via git (I use dendron's Sync Workspace
feature).
I'm quite lost in how to debug the problem. Can anyone help me with that?ccamara
02/28/2022, 8:36 AMSeriousBug
02/28/2022, 9:18 AMSilviu
02/28/2022, 9:20 AMmihaiconstantin
02/28/2022, 9:21 AMSilviu
02/28/2022, 9:24 AMSilviu
02/28/2022, 9:26 AMSeriousBug
02/28/2022, 9:27 AMSilviu
02/28/2022, 9:28 AMSeriousBug
02/28/2022, 9:29 AMSeriousBug
02/28/2022, 9:30 AMccamara
02/28/2022, 9:32 AMyaml
version: 1
schemas:
- id: daily
title: daily
desc: ""
parent: root
children:
- journal
- id: journal
title: journal
desc: ""
parent: daily
children:
- year
- id: year
title: year
pattern: "[0-2][0-9][0-9][0-9]"
children:
- month
- id: month
title: month
pattern: "[0-9][0-9]"
children:
- day
- id: day
title: day
pattern: "[0-9][0-9]"
namespace: true
template:
# identifier for the template (for a note based template, it would be the name of the note)
id: templates.journal.day
# what sort of template we are creating. currently, only 'note' is supported
type: note
SeriousBug
02/28/2022, 9:33 AMparent: daily
removed? Otherwise this looks very similar to the schema I use which worksSeriousBug
02/28/2022, 9:34 AMnamespace: true
for the day might mean this will match daily.journal.2022.02.28.something
but not daily.journal.2022.02.28
. Removing that might also workSeriousBug
02/28/2022, 9:35 AMtemplate: templates.journal.day
.hikchoi
02/28/2022, 9:37 AMhikchoi
02/28/2022, 9:51 AMdailyVault
to be the vault you want the daily journals to be created. like so:
yaml
# in dendron.yml
...
workspace:
journal:
dailyVault: private
...
ccamara
02/28/2022, 10:00 AM