-
-
Notifications
You must be signed in to change notification settings - Fork 41
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support Scopes #19
Comments
In tag, there should be not: VSCode and GitHub Markdown parsers distinguish header like Sample Titlevs #SampleTag So, my suggestion is to follow the standard if it is possible. As alternative, I may suggest
Before tag_name is also an option:
But the first option seems to be more readable. |
I support the choice of #hashtags, it feels most natural. According to the Common Mark definition of Markdown used by VSCode, a hashtag immediatly followed by characters (No spaces in between) is not considered a heading and doesn't have any syntactical function. (https://spec.commonmark.org/0.28/#example-33) |
After using the journal for over a year now I still love it. I miss however an easy way to see all entries over time related to a given subject. A timeline view if you wish. I don't use tags, but instead have valid markdown files with the subject name in a second level heading ( I am thinking about implementing the following features:
There are a lot of subtleties involved in these features, therefore a question to everyone reading in this issue: How do you use the journal? How do your daily entries look? If you can, post a sample entry in the comments. Here's mine: # Wednesday, 13. February 2019
## Project 1
- Slack-Webhook switched to channel #notifications.
- Phone call with A.: Agreed to changes, need to send a screenshot of the new interface when done.
## Security
- Changed password on these sites:...
## Project 3
- Updated info page.
- Informed manager about changes on the page.
- Started new branch and deployed to staging, not yet live.
## Python
- Learned about feature x, see docs here: <..>
- Nice tutorial here: <...> |
Thanks ;) Here's an example for my daily entries (now going back to 2014) following your layout.
Using tags or headlines as filters for search (using the input and having suggestions or having them as clickable links which open the timeline) needs some sort of internal index. I thought about defining indexed tags in the settings, there you could also include predefined headings. You could then implement a decorator which scans the open file for predefined tags and headers and associate them with links. |
Thanks for the sample. Yeah, having to maintain an index is gonna be the tricky part I think. I'll have a look around how other extensions are doing this. |
vsnotes extension, it uses tags to identify files. |
I think that finding a note is more important than just taking it. Are you familiar with Roam Research and their approach to taking totes? It would be great to have a tagging system similar to what they have. |
@pajoma one more question. Do you consider a tagging system as a part of the extension or as a part of other extensions like vscode-journal-view ? |
FYI: I'm still (slowly) working on my timeline view as mentioned above. Not exactly like Roam though. |
I need to understand some terminology. I can't get the scope system to work for me.. but I like to understand the relationship between the
Now, here is how I use / think about the extension..
Generally simplifying the extensions and reusing the existing support:
|
I agree that the vscode workspaces are the way to go. I think we have to distinguish between the following workflows:
The support for the latter was in my mind while drafting the solution using the tags. You are working in your project (let's say "website_A") and stumble upon an issue which could be interesting for another project "website_b". You could switch the workspace, but that would break your flow. With tags, you simply enter "#website_b Fix for issue", add your thoughts, and that's it. The new file is stored in the notes folder of website_b, and you continue with website_a. Scopes are identified by tags and can also be added to tasks and memos. But journal entries should be global and span across scopes, I think the whole workflow breaks if we have multiple journals. Regarding switching between projects: |
Filterting by tags is tracked in #122 |
Could scopes (such as ClientA as shown in your scopes example) be used to create/add to a journal entry in a given scope for the current day (or an offset) in the path defined in the journal.scopes dictionary? If no scope is given that matches a defined scope, then default to the current workspace default journal. As an example... "ClientA next Wed todo Add Kyle to meeting invite" parsed as |
See issue #18 for discussion to this point.
I thought about some sort of scoping (in the sense of free tagging), but I am still not sure how to approach this. My notes typically follow this structure
One idea would be to tag the various structures (headings, memos, todos) if it belongs to a project, e.g.
## Some meeting notes of !ProjectA!
. Special view pages could then aggregate all notes marked with the same tag. I am still not sure which notation to use (# is already used for headers, @ typically denotes mentioning), but maybe this approach is nonsense anyways.The text was updated successfully, but these errors were encountered: