help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Move line


From: Peter Dyballa
Subject: Re: Move line
Date: Sat, 31 May 2008 23:51:36 +0200


Am 31.05.2008 um 17:57 schrieb rock69:

I was wondering if it's possible to move (shift) a line of text up or down


(defun scroll-down-in-place (n)
  (interactive "p")
  (previous-line n)
  (scroll-down n))

(defun scroll-up-in-place (n)
  (interactive "p")
  (next-line n)
  (scroll-up n))


--
Greetings

  Pete

When people run around and around in circles we say they are crazy. When planets do it we say they are orbiting.






reply via email to

[Prev in Thread] Current Thread [Next in Thread]