Skip to content

How to use :property properly? #266

Answered by DavidCodingLounge
dorneanu asked this question in Q&A
Discussion options

You must be logged in to vote

Thanks for your reply. In ielm I can see the difference between the both. When I then try to set:

  (:name "This Week"
    :property `("week" ,(format-time-string "%U"))
  )

then I get:

Wront type argument: sequencep, \`

Again: I want to match items with a property called week where the value is the current week number (aka format-time-string "%U")

Just posting this to solve the problem and get the issue closed.

The problem is that you are nesting a backquote inside of an already quoted block. Simply change the block from a quote to a backquote and then use the expression that alphapapa provided.

(org-super-agenda-groups
	`(
	(:log t)
	(:discard (:tag "inactive"))
	(:discard (:tag "jira"

Replies: 3 comments

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Answer selected by alphapapa
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
3 participants
Converted from issue

This discussion was converted from issue #244 on September 01, 2024 22:00.