emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* two new functions: org-move-thing-up org-move-thing-down
@ 2009-02-12 15:56 Richard KLINDA
  2009-02-12 16:13 ` Bernt Hansen
  0 siblings, 1 reply; 3+ messages in thread
From: Richard KLINDA @ 2009-02-12 15:56 UTC (permalink / raw)
  To: emacs-orgmode

Here are two functions for moving things around.  Useful to bind them to
keys.

Carsten, please include these functions in org if you think it's ok.

,----[ for me it is ]
| (define-key org-mode-map [(alt ?N)] 'org-move-thing-up)
| (define-key org-mode-map [(alt ?T)] 'org-move-thing-down)
`----

,----
| (defun org-move-thing-up ()
|   "Move table row, headline or list item up."
|   (interactive)
|   (let ((headline-p (save-excursion
|                       (beginning-of-line)
|                       (when (looking-at (concat "^\\(" outline-regexp "\\)"))
|                         t))))
|     (cond ((org-at-table-p) (org-table-move-row-up))
|           (headline-p (org-move-subtree-up))
|           (t (org-move-item-up 1)))))
| 
| (defun org-move-thing-down ()
|   "Move table row, headline or list item down."
|   (interactive)
|   (let ((headline-p (save-excursion
|                       (beginning-of-line)
|                       (when (looking-at (concat "^\\(" outline-regexp "\\)"))
|                         t))))
|     (cond ((org-at-table-p) (org-table-move-row-down))
|           (headline-p (org-move-subtree-down))
|           (t (org-move-item-down)))))
`----

-- 
Udv, Richard

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

end of thread, other threads:[~2009-02-12 16:49 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-02-12 15:56 two new functions: org-move-thing-up org-move-thing-down Richard KLINDA
2009-02-12 16:13 ` Bernt Hansen
2009-02-12 16:46   ` Richard KLINDA

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).