Akash
Akash
I want to make some more comments. 1. My intuition is that disabling modification hooks in the temporary buffer shouldn't be a problem here - but this could cause regressions....
@yantar92 Thanks for the heads up. In my version the variable is without any documentation - and I missed it while having a quick glance. @he-sk study this part from...
``` (defmacro org-roam-with-temp-buffer (file &rest body) "Execute BODY within a temp buffer. Like `with-temp-buffer', but propagates `org-roam-directory'. If FILE, set `default-directory' to FILE's directory and insert its contents." (declare (indent...
Why does every article on the internet feels like written by a computer program?
I was looking for this too - I realised this was broken, when trying to test a cache to the `#'org-roam-node-read--completions` It was turned off here https://github.com/jgru/consult-org-roam/commit/3c2701ee72130591f9e8c48a9d54e544c304003b I am unsure...
Also I want to note that I think org-roam's atime implementation is broken. the atime is stored in a node -- but nodes are not updated unless some change is...
My hunch was correct - it is indeed calling vertico-sort when :sort is set to t -- ``` Debugger entered--entering a function: * vertico-sort-history-length-alpha((#(" 20001 ..." 0 13 (node #s(org-roam-node...
I don't grasp the problem here - org-roam should not open any files for processing - it queries a db; ~~maybe the files are being opened by org-agenda?~~ The files...
This is a very inefficient way - there are a lot of redundant things being done. The final candidate format preparation is the most expensive process in getting the final...
``` (cl-defmethod org-roam-node-hierarchy ((node org-roam-node)) (let ((level (org-roam-node-level node))) (concat (when (> level 0) (concat (propertize (org-roam-node-file-title node) 'face 'italic) " / ")) (when (> level 1) (concat (string-join (org-roam-node-olp...