You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Would it be possible to include a :not-regexp option in org dblocks? With a semantic of something like:
If both :regexp and :not-regexp are provided, notes which pass the following test (and (string-match-p regexp filename) (not (string-match-p not-regexp filename)))
If only :regexp, continue as normal
If only :not-regexp, show links to notes which do not match :not-regexp (i.e., (not (string-match-p not-regexp filename)))
Would it be possible to include a
:not-regexp
option in org dblocks? With a semantic of something like::regexp
and:not-regexp
are provided, notes which pass the following test(and (string-match-p regexp filename) (not (string-match-p not-regexp filename)))
:regexp
, continue as normal:not-regexp
, show links to notes which do not match:not-regexp
(i.e.,(not (string-match-p not-regexp filename))
)This is inspired by https://mastodon.online/@johnrakestraw/113495071981398889
The text was updated successfully, but these errors were encountered: