all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Tassilo Horn <tsdh@gnu.org>
To: Luca Ferrari <fluca1978@infinito.it>
Cc: help-gnu-emacs <help-gnu-emacs@gnu.org>
Subject: Re: align-regexp problem when called from lisp code
Date: Fri, 09 Aug 2013 10:13:29 +0200	[thread overview]
Message-ID: <87wqnvl1sm.fsf@thinkpad.tsdh.org> (raw)
In-Reply-To: <CAKoxK+5KmM0uaHiHbccC=ZK=YcnOTiELMwmccQmnrQNQg9DZZg@mail.gmail.com> (Luca Ferrari's message of "Fri, 9 Aug 2013 08:08:32 +0200")

Luca Ferrari <fluca1978@infinito.it> writes:

>>> --8<---------------cut here---------------start------------->8---
>>> (defun fluca1978/align-assignments (beg end)
>>>   (interactive "r")
>>>   (align-regexp beg end "\\(\\s-*\\)="))
>>> --8<---------------cut here---------------end--------------->8---
>
> Uhm...just for curiosity, what kind of regexp should I use if I want
> also to align all comment starting (/*) in every row?

You mean C-style multi-line comments?  This

--8<---------------cut here---------------start------------->8---
(defun fluca1978/align-comment (beg end)
  (interactive "r")
  (align-regexp beg end "\\(\\s-*\\)\\*" 1 0))
--8<---------------cut here---------------end--------------->8---

aligns that

/**
      * Here starts a comment
* and here it goes again
   * and again
 */

to

/**
 * Here starts a comment
 * and here it goes again
 * and again
 */

Is that what you mean?

Bye,
Tassilo



  reply	other threads:[~2013-08-09  8:13 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-08-08 10:34 align-regexp problem when called from lisp code Luca Ferrari
2013-08-08 11:32 ` Tassilo Horn
2013-08-08 11:57   ` Luca Ferrari
2013-08-09  6:08     ` Luca Ferrari
2013-08-09  8:13       ` Tassilo Horn [this message]
2013-08-09  8:45         ` Luca Ferrari
2013-08-09  9:40           ` Tassilo Horn
2013-08-09 10:03             ` Luca Ferrari

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87wqnvl1sm.fsf@thinkpad.tsdh.org \
    --to=tsdh@gnu.org \
    --cc=fluca1978@infinito.it \
    --cc=help-gnu-emacs@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.