-
Notifications
You must be signed in to change notification settings - Fork 5
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
I want better support for tags #138
Comments
How i'd implement is I would adjust the |
First just start with changing the text colour of tags to grey and have autocomplete tags when they type #. |
where's the PR for this? also add the |
Cloded by #609 |
What is wanted now:
USE CONTEXTMENUS that was just released in flutter 3.7
link_suggestions.dart
probably rename it to suggestions (also probably rename it to be more genericF2
hotkey)showTitleLinksOverlay
is the function that displays the LinkSuggestion_onContentChange
triggers the above function andisTitleLinksVisible
is the function that determines if we should show the LinkSuggestionnote_editor.dart
searchStyleableTextFieldController
use the tag regex in obsidian plugin code!
DONT DO THIS
DONT DO THIS! Store a local storage (use HiveDB)I want better search performance #190every time u save a note, it'll update the local storage with key = note_id, value is { tags: [String...], links: [String...] }database.dart
calledfindAllTags
. I'm thinking of changing from HiveDB to Isar Database for better query management when working locallyHow would this be implemented
What is potentially wanted for the future
title_links.dart
)E.g.
"Hello #tag1 I am #tag2"
="Hello I am" + filter for #tag1 and #tag2
The text was updated successfully, but these errors were encountered: