Akash
Akash
causes some regressions, particularly regarding using filter functions over the nodes,
I was using this advice function before https://github.com/Konubinix/Devel/blob/30d0184db0a61f46ca35e102302d707fef964a8c/elfiles/config/after-loads/KONIX_AL-org-roam.el#L770-L787 And I was also using filter functions such as described in https://org-roam.discourse.group/t/filter-org-roam-node-find-insert-using-tags-and-folders/1907/6 The problem in that was that caching org-roam-node-read--completions meant the...
I just checked again! Its working. I am so sorry I dont know what was going wrong previously. I feel so embarrassed. My filter functions are working just fine! Thanks,...
> I added caching for sort-fn. This makes it viable to add sth like > > ```emacs-lisp > (setq iko/org-roam-node-find-precache-timer > (run-with-idle-timer 6 t (defun iko/org-roam-node-find-precache () > (org-roam-node-read--completions org-roam-node--candidate-list-prev-filter-fn...
> Another trick i use is the following: I memoize `org-roam-node-read--to-candidate`: > > ``` > (defvar org-roam-node-read--to-candidate--memoization-map (make-hash-table :test #'equal :size 1000)) > ;; FIXME: cleanup org-roam-node-read--to-candidate--memoization-map after long time...
Please see this, I have created a small advice function to do just this https://org-roam.discourse.group/t/org-roam-db-optimisation/3332?u=akashp
The upstream issue doesn't exist anymore it seems, any update on this bug on org-roam-ui? This is the very first bug which is noticeable when opening. Seems to only gets...
I couldn't get it working by the method described in documentation too, however it is very easy to add a property using the capture system ``` (add-to-list 'org-roam-capture-templates '("t" "test...
Thank you so much for providing the diff file. This was a major bug for my usecase, I write documents in long form and this solved a huge problem. I...
Interesting - I had this functionality by simply using an advice function over both `org-id-open` and `org-roam-id-open`. Commenting to keep track if this gets pushed - my code will become...