Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rename org-gtd-agenda.el to org-gtd-engage.el #167

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions CHANGELOG.org
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
* 3.1.0 (unstable)
** New variable to configure agenda prefix width in engage view
** Fix edge case of processing empty heading ( #169 )
** Better messages in minibuffer
- discover ~with-temp-message~ to hide things we don't care about.
** Adding task to a project works ( #160 )
- Now uses org-refile like it was meant to be used
- Now works for projects outside ~org-gtd-directory~.
** Closer alignment with official GTD terminology ( # 167 )
- File org-gtd-agenda.el renamed to org-gtd-engage.el
- Command org-gtd-show-all-next renamed to org-gtd-engage-next
* 3.0.0
** Functions exist to create your own hooks
Make GTD truly a part of your emacs experience.
Expand Down
8 changes: 4 additions & 4 deletions doc/org-gtd.org
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ My org-gtd config for 1.x was as follows:
(("C-c d c" . org-gtd-capture)
("C-c d a" . org-agenda-list)
("C-c d p" . org-gtd-process-inbox)
("C-c d n" . org-gtd-show-all-next)
("C-c d n" . org-gtd-engage-next)
("C-c d s" . org-gtd-show-stuck-projects)
:map org-gtd-process-map
("C-c c" . org-gtd-choose)))
Expand Down Expand Up @@ -357,7 +357,7 @@ And my config for 2.0 is:
(("C-c d c" . org-gtd-capture)
("C-c d e" . org-gtd-engage)
("C-c d p" . org-gtd-process-inbox)
("C-c d n" . org-gtd-show-all-next)
("C-c d n" . org-gtd-engage-next)
("C-c d s" . org-gtd-show-stuck-projects)
:map org-gtd-process-map
("C-c c" . org-gtd-choose)))
Expand Down Expand Up @@ -523,7 +523,7 @@ If you are a Doom Emacs user, then your configuration may look something like th
:desc "Capture" "c" #'org-gtd-capture
:desc "Engage" "e" #'org-gtd-engage
:desc "Process inbox" "p" #'org-gtd-process-inbox
:desc "Show all next" "n" #'org-gtd-show-all-next
:desc "Show all next" "n" #'org-gtd-engage-next
:desc "Stuck projects" "s" #'org-gtd-review-stuck-projects))
(map! :map org-gtd-clarify-map
:desc "Organize this item" "C-c c" #'org-gtd-organize))
Expand Down Expand Up @@ -676,7 +676,7 @@ Here is an example:

You can see a list of all NEXT actions, and scheduled actions, with ~M-x org-gtd-engage~ .

You can call ~org-gtd-show-all-next~ to only see NEXT actions, nothing scheduled.
You can call ~org-gtd-engage-next~ to only see NEXT actions, nothing scheduled.

You can use ~org-gtd-oops~ to see all the appointments you missed, and act on them accordingly.

Expand Down
8 changes: 4 additions & 4 deletions doc/org-gtd.texi
Original file line number Diff line number Diff line change
Expand Up @@ -605,7 +605,7 @@ My org-gtd config for 1.x was as follows:
(("C-c d c" . org-gtd-capture)
("C-c d a" . org-agenda-list)
("C-c d p" . org-gtd-process-inbox)
("C-c d n" . org-gtd-show-all-next)
("C-c d n" . org-gtd-engage-next)
("C-c d s" . org-gtd-show-stuck-projects)
:map org-gtd-process-map
("C-c c" . org-gtd-choose)))
Expand Down Expand Up @@ -651,7 +651,7 @@ And my config for 2.0 is:
(("C-c d c" . org-gtd-capture)
("C-c d e" . org-gtd-engage)
("C-c d p" . org-gtd-process-inbox)
("C-c d n" . org-gtd-show-all-next)
("C-c d n" . org-gtd-engage-next)
("C-c d s" . org-gtd-show-stuck-projects)
:map org-gtd-process-map
("C-c c" . org-gtd-choose)))
Expand Down Expand Up @@ -906,7 +906,7 @@ If you are a Doom Emacs user, then your configuration may look something like th
:desc "Capture" "c" #'org-gtd-capture
:desc "Engage" "e" #'org-gtd-engage
:desc "Process inbox" "p" #'org-gtd-process-inbox
:desc "Show all next" "n" #'org-gtd-show-all-next
:desc "Show all next" "n" #'org-gtd-engage-next
:desc "Stuck projects" "s" #'org-gtd-review-stuck-projects))
(map! :map org-gtd-clarify-map
:desc "Organize this item" "C-c c" #'org-gtd-organize))
Expand Down Expand Up @@ -1147,7 +1147,7 @@ Here is an example:

You can see a list of all NEXT actions, and scheduled actions, with @code{M-x org-gtd-engage} .

You can call @code{org-gtd-show-all-next} to only see NEXT actions, nothing scheduled.
You can call @code{org-gtd-engage-next} to only see NEXT actions, nothing scheduled.

You can use @code{org-gtd-oops} to see all the appointments you missed, and act on them accordingly.

Expand Down
2 changes: 1 addition & 1 deletion org-gtd-archive.el
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
(require 'org-element)

(require 'org-gtd-core)
(require 'org-gtd-agenda)
(require 'org-gtd-engage)

;;;; Customization

Expand Down
Loading