Akash

Results 184 comments of Akash

My rationale turned out to be wrong -- I can replicate this problem easily it isn't a rare bug but consistent. It seems the undo tree is storing the changes...

I tested multiple solutions playing around with the undo-buffer-list -- there is a new macro in emacs (with-undo-amalgamate) but none of them seems to stop the issue - I think...

I wanted to clean up things -- the original text is extracted from some book and no effort had been put to clean it up -- currently; its not fit...

@sleetdrop thanks for the update - this codebase has been abandoned altogether I fear. So it is unlikely the TODO will change anytime soon. I use the default graphing capabilities...

org-roam-db-query is just a simple wrapper function all it does is (apply #'emacsql (org-roam-db) query args) So the database has to be loaded for this function to work -- doing...

The current implementation can be improved -- I spent some time in concising the code. Currently I am trying a trio of cache, the cache of formatting improves responsiveness when...

> I think whether the user uses the advice or not should be optional. > > All of these solutions are intrusive, some more than others. Thus, the user should...

> I'm using sort functions. It is relevant for me that the cache works with sort functions. I don't think that code that silently uses the previous cache (so that...

``` ;; Processes ranked most expensive to least expensive ;; 1. `org-roam-node-read--to-candidate' -- final formatting ;; 2. `org-roam-node-list' -- initial formatting & db query ;; 3. rest of `org-roam-node-read--completions' (filtering...

> Please try this function. It might obviate the need to cache the database. The cost of the processing of the list using append (in the original code) meant that...