From: Jacob Gerlach <jacobgerlach@gmail.com>
To: help-gnu-emacs@gnu.org
Subject: Re: Operate on each line in region
Date: Wed, 23 Apr 2014 16:23:20 -0700 (PDT) [thread overview]
Message-ID: <02d45a30-ac9e-46a1-8f7b-1e3ce651de00@googlegroups.com> (raw)
In-Reply-To: <8a35bad7-fd4a-4755-95c2-528b96e032b1@googlegroups.com>
I'm having more trouble figuring this out that I expected.
I tried building a function around align-regexp:
(defun my-justify-equals (start end)
"Indents current region to justify equals signs"
(interactive 'r')
(align-regexp start end "\\([ \t]*\\)\\(.*\\)=" 1 nil nil))
But when I attempt to evaluate the defun I get
Invalid read syntax: ")"
In any case, I still can't get the right result using align-regexp interactively.
I tried "\([ \t]*\)\(.*\)=" as my regexp, with 1 for 'group' and 'spacing.' This inserts a tab character at the beginning of the line...
After reviewing the documentation more closely, perhaps align regexp doesn't do what I need. The description for group states:
The "alignment character" is always the first character immediately following this parenthesis group.
However, I want a different behavior, where the alignment character is later in the string, so it seems that what I want to do isn't actually possible with align-regexp.
So I tried something more in line with my original idea, except working from the end to the beginning as Stefan suggested:
(defun my-justify-equals (start end)
"Indents current region to justify equals signs"
(interactive 'r')
(save-excursion
(goto-char end)
(let (left-length)
(save-excursion
(while (> (point) start)
(if (re-search-forward "^[ \t]*\\(.*\\)=" (line-end-position) t)
(when (> (length (match-string-no-properties 1)) left-length)
(setq left-length (length (match-string-no-properties 1)))))
(forward-line -1)))
(goto-char end)
(while (> (point) start)
(if (re-search-forward "^[ \t]*\\(.*\\)=" (line-end-position) t)
(indent-line-to (+ tab-width (length (match-string-no-properties 1))))
(indent-line-to tab-width))
(forward-line -1)))))
However, I can't test this. Attempting to evaluate the defun gives "Invalid read syntax ")". I followed the instructions at http://www.gnu.org/software/emacs/manual/html_node/elisp/Syntax-Errors.html, but was unable to identify an error.
What am I missing?
Thanks,
Jake
next prev parent reply other threads:[~2014-04-23 23:23 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-04-23 17:45 Operate on each line in region Jacob Gerlach
2014-04-23 18:03 ` Doug Lewan
2014-04-23 18:05 ` Stefan Monnier
2014-04-23 18:15 ` Pascal J. Bourguignon
[not found] ` <mailman.20129.1398276348.10748.help-gnu-emacs@gnu.org>
2014-04-23 19:06 ` Barry Margolin
2014-04-23 19:18 ` Jacob Gerlach
2014-04-23 23:23 ` Jacob Gerlach [this message]
2014-04-23 23:44 ` Barry Margolin
2014-04-26 3:02 ` Jacob Gerlach
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
List information: https://www.gnu.org/software/emacs/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=02d45a30-ac9e-46a1-8f7b-1e3ce651de00@googlegroups.com \
--to=jacobgerlach@gmail.com \
--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.
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).