commit d8f29225a3
Author: Ahmed Shariff <shariff.mfa@outlook.com>
Date: Fri Sep 24 15:47:38 2021 -0500
Abstract buffers-files being flattened to a list of strings
commit 2d49745425
Author: Ahmed Shariff <shariff.mfa@outlook.com>
Date: Fri Sep 17 17:53:21 2021 -0500
Fix: \w duplicates & func's with buffers/names with expand/contract
commit 576f9d3512
Author: Ahmed Shariff <shariff.mfa@outlook.com>
Date: Thu Sep 16 18:42:32 2021 -0500
Handling support for functions \w functions using completing-read-multiple
commit cea165192d
Author: Ahmed Shariff <shariff.mfa@outlook.com>
Date: Thu Sep 16 16:49:19 2021 -0500
Cleaning up functions and improvements for clarity.
commit aa9c6ccdfa
Author: Ahmed Shariff <shariff.mfa@outlook.com>
Date: Wed Sep 15 17:56:19 2021 -0500
Adding `comma separated` instruction to readme
commit 564d491604
Author: Ahmed Shariff <shariff.mfa@outlook.com>
Date: Mon Sep 13 17:05:14 2021 -0500
Fixes for using mulitiple values and related test suite improvements
commit ffaebcbcbe
Merge: 788951a94f9e6f
Author: Ahmed Shariff <shariff.mfa@outlook.com>
Date: Mon Sep 13 13:15:57 2021 -0500
Merge branch 'master' of https://github.com/alphapapa/org-ql
commit 788951a4a9
Author: Ahmed Shariff <shariff.mfa@outlook.com>
Date: Mon Sep 13 11:01:55 2021 -0500
Replacing org-ql-view--expand-buffers-files
commit cabf88eea5
Author: Ahmed Shariff <shariff.mfa@outlook.com>
Date: Mon Jul 19 00:19:52 2021 -0500
removing duplcates when expanding buffers-files
commit b68d836562
Author: Ahmed Shariff <shariff.mfa@outlook.com>
Date: Sun Jul 18 23:49:54 2021 -0500
Using completing-read-multiple for org-ql-view--complete-buffers-files
commit 06bdfc7a9e
Author: Ahmed Shariff <shariff.mfa@outlook.com>
Date: Sun Jul 4 23:32:08 2021 -0500
Fn always promts for buffer/files; handle buffer obj and list
Fn: org-ql-view--complete-buffers-files
With buffers, org-ql-view--contract-buffers-files return the buffer
name.
When org-ql-view-buffers-files is a list, just dumpt it as a string
and check if completion-read returns the same value, if so return the
original value of org-ql-view-buffers-files
commit cc6e22dd30
Author: Ahmed Shariff <shariff.mfa@outlook.com>
Date: Sun Jul 4 23:31:31 2021 -0500
Allow reading buffer names for buffers-or-names
commit 89b84768ad
Author: Ahmed Shariff <ahmed.shariff@live.com>
Date: Sat Jul 3 21:25:10 2021 -0500
Test cases for all org-ql-view--*-buffers-files functions
commit 7120b6334d
Author: Ahmed Shariff <shariff.mfa@outlook.com>
Date: Sat Jul 3 02:17:33 2021 -0500
Refactor of org-ql-view--complete-buffers-files
Handles the different values `org-ql-view-buffers-files` can hold.
Use completing-read only if `org-ql-view-buffers-files` is nil or the
contracted form of `org-ql-view-buffers-files` is a string.
commit 7b990e5275
Author: Ahmed Shariff <shariff.mfa@outlook.com>
Date: Wed Jun 30 18:01:49 2021 -0500
Fix for issue with initial-input in org-ql-view--complete-buffers-files
And use in org-ql-find. This seems to solve a problem I've been
noticing in helm-org-ql for a long time: that it can apparently
interrupt Org's initialization code, which can leave buffers
unprepared for Org, even stuck in fundamental-mode. This should also
be used in helm-org-ql...
This helps prevent unexpected errors from making it impossible to
search, and displaying the messages in the warnings buffer makes them
more noticeable and readable for the user.
Some argument combinations weren't normalized correctly and could
cause an infinite loop.
This commit doesn't update any corresponding tests, because they are
being rearranged in the WIP branch where this commit originates, and
teasing them out wouldn't be worth it.
e.g. if a predicate only accepts one argument, but the query gives
two, now the error will say, "PREDICATE called with 2 arguments, but
accepts only 1" (so maybe the predicate definition just needs
"&rest").