alphapapa / alphapapa/org-ql

FEATURE REQUEST: Tags column (formatter) for dynamic block

Aberta
#359 0 comentários 0 reações 1 responsável Reivindicada por @alphapapa Ver no GitHub
enhancement good first issue help wanted
Linguagem predominante
Emacs Lisp
Estrelas
1.6k
Forks
120
Métricas de merge de PRs
Nenhum PR com merge em 30d

Descrição

This would be very simple and is an obviously missing feature.

It should be possible to filter the tags with regexp.

I fixed it for me with the following el-patch for (org-dblock-write:org-ql):
```
(el-patch-add
(cons 'tags (lambda (element &optional pattern)
(s-join " "
(--filter
(or (not pattern)
(s-matches? pattern it))
(org-element-property :tags element))))))
```

As stated in my other feature request, tags and property columns should be able to access inherited tags/properties. This information is currently not accessible via the element parameter of (org-dblock-write:org-ql).

Guia de contribuição

Nenhum guia de contribuição indexado para este repositório

Avaliação

Esta issue ainda não foi avaliada.

Receba novas issues na sua caixa de entrada

Um resumo curto de issues do GitHub para quem está começando.