From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Mathias Dahl Newsgroups: gmane.emacs.help Subject: Re: setting continuation chars Date: Thu, 29 Jun 2006 09:38:01 +0200 Message-ID: References: <1151522427.433692.320650@b68g2000cwa.googlegroups.com> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1151566881 1718 80.91.229.2 (29 Jun 2006 07:41:21 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Thu, 29 Jun 2006 07:41:21 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Thu Jun 29 09:41:20 2006 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1Fvr9F-00054V-Jt for geh-help-gnu-emacs@m.gmane.org; Thu, 29 Jun 2006 09:41:13 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Fvr9F-0005gu-5P for geh-help-gnu-emacs@m.gmane.org; Thu, 29 Jun 2006 03:41:13 -0400 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: 26 Original-X-Trace: individual.net CZfFAAykrns264vg6swxmQADysiEUrmqYQdeI7zCihf9sKGLXO User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.0.50 (windows-nt) Cancel-Lock: sha1:uCZMQ7kvUyr61J1mKqAzOT2Gkz8= Original-Xref: shelby.stanford.edu gnu.emacs.help:140095 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:35719 Archived-At: "gamename" writes: > 2) use some sort of command (regex?) to insert the needed spaces up to > a certain column and then put in a backslash? Or, maybe something like this: (defun line-up-continuations () "Line up all continuations from point and forward." (interactive) (save-excursion ;; Find backslash at the end of a line (while (search-forward-regexp "\\\\$" nil t) ;; Back up to set point before it (backward-char 1) ;; Indent to a fixed column (indent-to-column 40) ;; Step forward again, else the search will find ;; the same backslash again. (forward-char 1)))) Replace `40' with whatever column number you like. Enjoy!