>| On Thu, 13 Mar 2008 21:48:56 -0700,
 >| Timothy Hobbs
 >| who can be reached at: [EMAIL PROTECTED]
 >| (whose comments are cited below with " Timothy> "),
 >| had this to say in article <[EMAIL PROTECTED]>
 >| in newsgroups gmane.emacs.planner.general
 >| concerning the subject of Agenda view?


 Timothy> But I have found no way to see all the tasks for the next 4 or
 Timothy> 5 days on the same page. Does anyone know how I can do this
 Timothy> without writing it myself?

You, Sir, want to take a look at `planner-zoom' (you might not have/want
to unset the keybindings) ...

,----
| ;;;_ , planner-zoom
| 
| (require 'planner-zoom)
| 
| ;;;_  . unset some local keybindings made when loading planner-zoom
| 
| ; `planner-zoom' has some local keybindings which overlap with some of
| ; my own, global keybindings. The keybinds in question where those
| ; made for `windmove-*'.
| ; So, I unset the local keybindins made by `planner-zoom' and made my
| ; own e.g. the one for `planner-zoom-iprev' (see further down within
| ; the keybindings section of my `.emacs')
| 
| (defun my-planner-unset-local-keybindings ()
| "Remove some keybindings for planner major mode. In special, I
| wanted to use the S-arrow keys e.g. S-<up> for navigation, so I
| had to unset the local keybindings for them made by
| planner-zoom."
|   (interactive)
|   (local-unset-key (kbd "S-<up>"))
|   (local-unset-key (kbd "S-<down>"))
|   (local-unset-key (kbd "S-<left>"))
|   (local-unset-key (kbd "S-<right>")))
| 
| (add-hook 'planner-mode-hook 'my-planner-unset-local-keybindings t)
`----



with keybindings like this

,----
| ; planner-zoom
| (global-set-key (kbd "<f9> <kp-8>") 'planner-zoom-iup)
| (global-set-key (kbd "<f9> <kp-2>") 'planner-zoom-idown)
| (global-set-key (kbd "<f9> <kp-6>") 'planner-zoom-inext)
| (global-set-key (kbd "<f9> <kp-4>") 'planner-zoom-iprev)
`----


_______________________________________________
Planner-el-discuss mailing list
[email protected]
https://mail.gna.org/listinfo/planner-el-discuss

Reply via email to