Skip to content

Instantly share code, notes, and snippets.

@ongaeshi
Created July 23, 2026 17:42
Show Gist options
  • Select an option

  • Save ongaeshi/1441fafb33c0b5ed9f624c4011399fd2 to your computer and use it in GitHub Desktop.

Select an option

Save ongaeshi/1441fafb33c0b5ed9f624c4011399fd2 to your computer and use it in GitHub Desktop.
TODOもカテゴリで管理する
views:
  - type: table
    name: TODO
    filters:
      and:
        - file.name != "TODOテンプレート"
        - or:
            - categories.contains(link("TODO"))
        - finished.isEmpty()
    order:
      - file.name
      - created
      - finished
    sort:
      - property: created
        direction: DESC
      - property: file.tags
        direction: DESC
      - property: finished
        direction: ASC
    columnSize:
      file.name: 339
      note.created: 166
  - type: table
    name: すべて
    filters:
      and:
        - file.name != "TODOテンプレート"
        - or:
            - categories.contains(link("TODO"))
    order:
      - file.name
      - created
      - finished
    sort:
      - property: finished
        direction: DESC
      - property: created
        direction: DESC
      - property: file.tags
        direction: DESC
    columnSize:
      file.name: 339
      note.created: 166

categories
[[TODO]]
created <% tp.date.now("YYYY-MM-DD") %>
finished

ログ

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment