Fix: (org-ql-agenda) Add package headers
This commit is contained in:
parent
62fa389901
commit
09501c7f61
1 changed files with 11 additions and 8 deletions
|
|
@ -1,13 +1,15 @@
|
||||||
;; -*- lexical-binding: t; -*-
|
;;; org-ql-agenda.el --- Agenda-like view based on org-ql -*- lexical-binding: t; -*-
|
||||||
|
|
||||||
|
;; Author: Adam Porter <adam@alphapapa.net>
|
||||||
|
;; Url: http://github.com/alphapapa/org-ql
|
||||||
|
;; Version: 0.1-pre
|
||||||
|
;; Package-Requires: ((emacs "25.1") (dash "2.13") (org "9.0"))
|
||||||
|
;; Keywords: hypermedia, outlines, Org, agenda
|
||||||
|
|
||||||
;;; Commentary:
|
;;; Commentary:
|
||||||
|
|
||||||
;; This is just a proof-of-concept for how the agenda code might be
|
;; This library displays buffers similar to Org Agenda buffers, based
|
||||||
;; written in a more functional way, to avoid making multiple passes
|
;; on `org-ql' queries.
|
||||||
;; through each file when building a multi-day agenda.
|
|
||||||
|
|
||||||
;; It also functions as a kind of "query language" for Org buffers.
|
|
||||||
|
|
||||||
;;;; Principles
|
;;;; Principles
|
||||||
|
|
||||||
|
|
@ -29,14 +31,15 @@
|
||||||
|
|
||||||
;;; Code:
|
;;; Code:
|
||||||
|
|
||||||
|
(require 'cl-lib)
|
||||||
(require 'org)
|
(require 'org)
|
||||||
(require 'org-agenda)
|
(require 'org-agenda)
|
||||||
(require 'dash)
|
|
||||||
(require 'cl-lib)
|
|
||||||
(require 'seq)
|
(require 'seq)
|
||||||
|
|
||||||
(require 'org-ql)
|
(require 'org-ql)
|
||||||
|
|
||||||
|
(require 'dash)
|
||||||
|
|
||||||
;;;; Variables
|
;;;; Variables
|
||||||
|
|
||||||
(defvar org-ql-agenda-buffer-name "*Org Agenda NG*"
|
(defvar org-ql-agenda-buffer-name "*Org Agenda NG*"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue