Ahmed Shariff

Results 52 comments of Ahmed Shariff

This actually stemmed from duplicate items being passed when using the interactive functions. For example, if a file name and also the buffer object of that file is passed in...

gotcha. As for the disambiguating between buffers and file names, it's only one line (#259): https://github.com/alphapapa/org-ql/blob/e1e526473ab11dd054619cb56e488e42d5ce6260/org-ql.el#L364 I don't see any downside to supporting passing buffers-names as well.

If my understanding of the current implementation is correct, that may make the code more complex? As I have described in #260, to account for the duplicate elements, I was...

We tried to solve it in #228 , didn't have the time to finish that. There were a few issues we hand't ironed out. I can revisit this when I...

as a temporary fix I have the following edit in org-ql-view: ```elisp (defun org-ql-view--complete-buffers-files () "Return value for `org-ql-view-buffers-files' using completion." (cl-labels ((initial-input () (when org-ql-view-buffers-files (cons (car (org-ql-view--contract-buffers-files org-ql-view-buffers-files))...

The restructure is not entirely necessary, see the above PR (#137). Though it creates copious amounts of meta files for non-essential files/folders. I have no idea how to work around...

> My long-term plans for Org QL include using a SQLite database as an additional backend, similar to org-roam That'd be cool to have. If you have a roadmap or...

Aright, so here's what I did: I used emacs with `-Q` and staright bootstraped: ```sh emacs -Q -l ~/.emacs.d/straight/repos/straight.el/bootstrap.el ``` Used the following script on two versions of org, one...

fyi, I posted the detailed breakdown: https://ahmed-shariff.github.io/post/2022-09-16-profiling_loading_org_files

Yep, when I get some time, I'll run it with the profile functions and update here. Any better way to share those results without cluttering this thread?