emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* [PATCH] org-agenda: Add only-window setup option
@ 2015-01-30  5:17 Kyle Meyer
  2015-01-30  9:42 ` Nicolas Goaziou
  0 siblings, 1 reply; 2+ messages in thread
From: Kyle Meyer @ 2015-01-30  5:17 UTC (permalink / raw)
  To: Org-mode

[-- Attachment #1: Type: text/plain, Size: 340 bytes --]

The variable org-agenda-window-setup provides several different options
(current-window, other-window, reorganize-frame, other-frame).  For a
while now, I've been using a different setup that deletes all other
windows.  The attached patch adds this option to
org-agenda-window-setup.

Do others think this option is worth having?

--
Kyle


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-org-agenda-Add-only-window-setup-option.patch --]
[-- Type: text/x-diff, Size: 2421 bytes --]

From edc17cdf46183f99a920523e7d7f69c2c098a4f1 Mon Sep 17 00:00:00 2001
From: Kyle Meyer <kyle@kyleam.com>
Date: Fri, 30 Jan 2015 00:04:54 -0500
Subject: [PATCH] org-agenda: Add only-window setup option

* lisp/org-agenda.el (org-agenda-window-setup, org-agenda-prepare-window):
  Add option to show agenda as the only window in the current frame.
---
 etc/ORG-NEWS       | 3 +++
 lisp/org-agenda.el | 5 +++++
 2 files changed, 8 insertions(+)

diff --git a/etc/ORG-NEWS b/etc/ORG-NEWS
index b45e439..66c72ca 100644
--- a/etc/ORG-NEWS
+++ b/etc/ORG-NEWS
@@ -192,6 +192,9 @@ manual for details.
 *** Countdown timers can now be paused.
 ~org-timer-pause-time~ wil now pause and restart both relative and
 countdown timers.
+*** New option ~only-window~ for ~org-agenda-window-setup~
+When ~org-agenda-window-setup~ is set to ~only-window~, the agenda is
+displayed as the sole window of the current frame.
 ** Miscellaneous
 *** Strip all meta data from ITEM special property
 ITEM special property does not contain TODO, priority or tags anymore.
diff --git a/lisp/org-agenda.el b/lisp/org-agenda.el
index ad4018d..541513a 100644
--- a/lisp/org-agenda.el
+++ b/lisp/org-agenda.el
@@ -1095,6 +1095,7 @@ (defcustom org-agenda-window-setup 'reorganize-frame
 
 current-window    Show agenda in the current window, keeping all other windows.
 other-window      Use `switch-to-buffer-other-window' to display agenda.
+only-window       Show agenda, deleting all other windows.
 reorganize-frame  Show only two windows on the current frame, the current
                   window and the agenda.
 other-frame       Use `switch-to-buffer-other-frame' to display agenda.
@@ -1105,6 +1106,7 @@ (defcustom org-agenda-window-setup 'reorganize-frame
 	  (const current-window)
 	  (const other-frame)
 	  (const other-window)
+	  (const only-window)
 	  (const reorganize-frame)))
 
 (defcustom org-agenda-window-frame-fractions '(0.5 . 0.75)
@@ -3621,6 +3623,9 @@ (defun org-agenda-prepare-window (abuf filter-alist)
       (org-switch-to-buffer-other-window abuf))
      ((equal org-agenda-window-setup 'other-frame)
       (switch-to-buffer-other-frame abuf))
+     ((eq org-agenda-window-setup 'only-window)
+      (delete-other-windows)
+      (org-pop-to-buffer-same-window abuf))
      ((equal org-agenda-window-setup 'reorganize-frame)
       (delete-other-windows)
       (org-switch-to-buffer-other-window abuf)))
-- 
2.2.2


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] org-agenda: Add only-window setup option
  2015-01-30  5:17 [PATCH] org-agenda: Add only-window setup option Kyle Meyer
@ 2015-01-30  9:42 ` Nicolas Goaziou
  0 siblings, 0 replies; 2+ messages in thread
From: Nicolas Goaziou @ 2015-01-30  9:42 UTC (permalink / raw)
  To: Kyle Meyer; +Cc: Org-mode

Hello,

Kyle Meyer <kyle@kyleam.com> writes:

> The variable org-agenda-window-setup provides several different options
> (current-window, other-window, reorganize-frame, other-frame).  For a
> while now, I've been using a different setup that deletes all other
> windows.  The attached patch adds this option to
> org-agenda-window-setup.
>
> Do others think this option is worth having?

It looks good. I applied it. Thank you.


Regards,

-- 
Nicolas Goaziou

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2015-01-30  9:41 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-01-30  5:17 [PATCH] org-agenda: Add only-window setup option Kyle Meyer
2015-01-30  9:42 ` Nicolas Goaziou

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).