From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Kevin Rodgers Newsgroups: gmane.emacs.help Subject: Re: shortcut for increasing/decreasing indent Date: Mon, 28 Mar 2005 12:55:40 -0700 Message-ID: <3ar5pvF4mt9qbU1@individual.net> References: NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1112039950 18582 80.91.229.2 (28 Mar 2005 19:59:10 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 28 Mar 2005 19:59:10 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Mon Mar 28 21:59:09 2005 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1DG0Np-0008DS-0l for geh-help-gnu-emacs@m.gmane.org; Mon, 28 Mar 2005 21:58:45 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1DG0dy-0008KK-3T for geh-help-gnu-emacs@m.gmane.org; Mon, 28 Mar 2005 15:15:26 -0500 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!news.tele.dk!news.tele.dk!small.news.tele.dk!fu-berlin.de!uni-berlin.de!individual.net!not-for-mail Original-Newsgroups: gnu.emacs.help Original-Lines: 16 Original-X-Trace: individual.net PzAy1T8B3fmJoXnO0b4hTQKTgd1/bNg3wm/WASKeTFGaL/C18= User-Agent: Mozilla Thunderbird 0.9 (X11/20041105) X-Accept-Language: en-us, en In-Reply-To: Original-Xref: shelby.stanford.edu gnu.emacs.help:129684 Original-To: help-gnu-emacs@gnu.org X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:25237 X-Report-Spam: http://spam.gmane.org/gmane.emacs.help:25237 Michael-E. Voges wrote: > Hi Emacs's, > I wonder, if there ist a shortcut increasing/decreasing an indented line while > the cursor is anywhere on that line without leaving the point (like for > example C-D or C-T in edit-mode on some other famous editor). Hmmm... (defun indent-line-rigidly (arg) "*Increase or decrease the indentation of the current line by ARG colums." (interactive "p") (indent-rigidly (line-beginning-position) (line-end-position) arg)) -- Kevin Rodgers