X-Git-Url: http://christophe.rhodes.io/gitweb/?p=iplayer-el.git;a=blobdiff_plain;f=iplayer.el;h=3a9ab641766c7372a8a537dae3fe20703111b145;hp=cd59ac226eb70917a7ed7f899425d3db22d1dcfa;hb=ec77e299afe71c69d575594d27a87935fb34840d;hpb=dcc1b1dc85819eb7391d570f25d0a160e4197802 diff --git a/iplayer.el b/iplayer.el index cd59ac2..3a9ab64 100644 --- a/iplayer.el +++ b/iplayer.el @@ -58,7 +58,7 @@ (message "Updating iPlayer cache")) (if iplayer-updating-cache-sentinel-executing (progn ,@body) - (push (list (selected-frame) (selected-window) (current-buffer) (this-command-keys)) + (push (list (selected-frame) (selected-window) (current-buffer) (this-command-keys-vector)) iplayer-updating-cache-sentinel-info))))) (defun get-iplayer-tree (&rest args) @@ -152,6 +152,29 @@ The presets are defined in the variable `iplayer-presets'." (start-process "get-iplayer" " *get-iplayer*" "get-iplayer" "--get" (format "%s" id))) (message "no id at point")))) +(defun iplayer-previous () + (interactive) + (save-match-data + (outline-previous-heading) + (while (and (= (funcall outline-level) 1) (not (bobp))) + (outline-previous-heading))) + (hide-other) + (unless (bobp) + (save-excursion + (outline-up-heading 1 t) + (show-children)))) + +(defun iplayer-next () + (interactive) + (save-match-data + (outline-next-heading) + (while (and (= (funcall outline-level) 1) (not (eobp))) + (outline-next-heading))) + (hide-other) + (save-excursion + (outline-up-heading 1 t) + (show-children))) + (defconst iplayer-mode-map (let ((map (make-sparse-keymap))) (define-key map (kbd "0") 'iplayer) @@ -160,6 +183,8 @@ The presets are defined in the variable `iplayer-presets'." (define-key map (read-kbd-macro (substring presets i (1+ i))) 'iplayer-preset))) (define-key map (kbd "RET") 'iplayer-download) + (define-key map (kbd "j") 'iplayer-next) + (define-key map (kbd "k") 'iplayer-previous) map ))