Skip to content

Commit

Permalink
fix: reduce the timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
usoonees committed Jan 17, 2023
1 parent 551721c commit 4b55f56
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,14 @@

A plugin for logseq to highlight the keyword in unlinked reference, and provide a button to automatically link them.

You can also highlight the refs and tags in linked references (**need to enable manually in the settings**).

#### Screenshot
![](image/screenshot.png)

You can also highlight the refs and tags in linked references (need to enable it in the settings).
![](image/linked.png)
Enable highlight in linked references.

<img src="image/linked.png" alt="drawing" height="200"/>

#### Demo
![Demo](image/demo.gif)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "logseq-plugin-link-unlinked",
"version": "1.3.0",
"version": "1.3.1",
"main": "dist/index.html",
"logseq": {
"title": "Link Unlinked References",
Expand Down
2 changes: 1 addition & 1 deletion public/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ async function main() {
logseq.App.onRouteChanged(() => {
setTimeout(async () => {
await highlightLinked()
}, 500)
}, 100)
})

let unlinkObserver, unlinkedRefsContainer
Expand Down

0 comments on commit 4b55f56

Please sign in to comment.