This would be the biggest improvement to use TiddlyWiki for my daily work. After searching auto-completion in this forum, I found the plugin edit-comptext by @snowgoon88 in this link (Auto-complete in core), also notice the discussion with RefNotes (Refnotes and auto-completion).
I also imported all my references from Zotero into Tiddlywiki and create a page for each of my colleagues.
After configuring edit-comtext in $:/plugins/snowgoon88/edit-comptext/config
, I can easily cite a reference and create a link to colleague in tiddler.
{
"pattern": "//",
"filter": "[tag[bibtex-entry]!is[system]!has[draft.of]]",
"start": "<<ref ",
"end": ">> "
}
Just typing two forward slashes, then last name of first author, I can easily find the reference and create the ref
macro.
{
"pattern": "@",
"filter": "[tag[Colleague]!is[system]!has[draft.of]]",
"start": "[[",
"end": "]]"
}
Now just typing @
and a few characters of my colleague to create a link.
Another useful tip is to quickly add snippet into tiddler with this configuration. All my snippets are defined with prefix $:/snippet/
.
{
"pattern": "..",
"body": "[tag[$:/tags/TextEditor/Snippet]]",
"mask" : "$:/snippet/",
"start": "",
"end": ""
}