summaryrefslogtreecommitdiffstatshomepage
path: root/nroam-utils.el
Commit message (Collapse)AuthorAgeFilesLines
* Update showing backlinks to work for Org Roam v2Gravatar Tom Willemse2024-05-271-5/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | This doesn't include backlinks from nodes within the same file. I've intentionally excluded these since they should be visible within the same file anyway. This is only for file nodes, doesn't include anything for headline nodes. If I get to adding backlinks for headline nodes as well I should show backlinks from headlines in the same file as well. - ‘org-roam--get-backlinks’ has been removed and is now replaced by ‘org-roam-backlinks-get’. The new function returns a list of ‘org-roam-backlink’ objects, which is different from what was returned before. - ‘org-roam-format-link’ has been removed. This was just a small wrapper around ‘org-link-make-string’. For now I've hard-coded the ‘file:’ link type since it's easy, but in the future this should probably use the org id instead so that it doesn't just go to the right file, but also the right heading. The line number could also be added. - In ‘nroam-backlinks--insert-backlink’ the ‘backlink’ argument is now an ‘org-roam-backlink’ object, not a string and a property list. - ‘nroam--fix-links’ has been removed for now since generally in org-roam v2 everything uses ‘id:’ links that are completely independent of where their source (or target) file are located.
* * nroam-utils.el (nroam--insert-heading): Copyedit ↵Gravatar Nicolas Petton2021-03-151-1/+1
| | | | docstring.
* Improve comment of nroam--insert-headingGravatar Damien Pollet2021-03-141-1/+2
|
* Organize backlinks under single headingGravatar Damien Pollet2021-03-141-0/+10
|
* * nroam-utils.el (nroam--ensure-empty-line): Copyedit ↵Gravatar Nicolas Petton2021-03-131-1/+1
| | | | docstring.
* Only use package headers in nroam.elGravatar Nicolas Petton2021-03-081-5/+0
| | | | | | * nroam-backlinks.el: * nroam-unlinked.el: * nroam-utils.el: Remove package headers.
* Bump nroam to v0.9.0v0.9.0Gravatar Nicolas Petton2021-03-071-1/+1
|
* Split nroam.elGravatar Nicolas Petton2021-03-011-0/+58
* nroam-backlinks.el: * nroam-utils.el: New files.