From: gebser@ameritech.net
Subject: Re: What's a better regexp for 'sentence-end' variable??
Date: Wed, 19 Feb 2003 13:41:37 -0500 [thread overview]
Message-ID: <Pine.LNX.4.44.0302191334490.16795-100000@heidegger.mousecar.net> (raw)
In-Reply-To: <uznotisyy.fsf@ID-87814.user.dfncis.de>
Oliver Scholz at 15:06 (UTC+0100) on Tue, 18 Feb 2003 said:
= gebser@ameritech.net writes:
= [...]
= > Because I do considerable editing of html and similar types of files, I
= > wanted to add to the standard definition of "sentence-end". I.e., I
= > wanted emacs to consider an end of sentence such character sequences
= > which have ".", "?", or "!" when they are followed by either a "<" or
= > ">".
=
= [...]
= > (defcustom sentence-end (purecopy "[.?!][]\<>\"')}]*\\($\\| $\\|\t\\|
= > \\)[ \t\n]*")
=
= What is the `purecopy' in your code good for? You didn't change this
= in the source code, did you? ;-)
Ya got me. That's what's used in paragraphs.el where "sentence-end" is
defined.
=
= [...]
= > I want the cursor to land on top of the ">" or "<" character immediately
= > after string comprising the standard definition. That is, given:
= >
= > end.</p>
= >
= > hitting M-e would place the cursor after the period.
=
= I would do it with a simple bit of Elisp. You could put something
= like the following into your ~/.emacs:
=
=
= (defun my-html-forward-sentence ()
= (interactive)
= (save-match-data
= (if (re-search-forward "\\([.?!]\\)<" nil t)
= (goto-char (match-end 1))
= (goto-char (point-max)))))
This is pretty much what I wanted. Thanks.
=
= (define-key sgml-mode-map (kbd "M-e") 'my-html-forward-sentence)
This didn't go. An error told me that I don't have the path (to psgml).
I haven't been able to figure that one out yet.
Thanks again,
ken
next prev parent reply other threads:[~2003-02-19 18:41 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <mailman.2070.1045574190.21513.help-gnu-emacs@gnu.org>
2003-02-18 14:06 ` What's a better regexp for 'sentence-end' variable?? Oliver Scholz
2003-02-18 20:15 ` gebser
2003-02-18 22:32 ` David Kastrup
2003-02-19 15:38 ` Kai Großjohann
2003-02-19 15:44 ` David Kastrup
2003-02-19 16:26 ` Kai Großjohann
2003-02-18 22:54 ` Kevin Rodgers
2003-02-19 20:42 ` gebser
2003-02-19 18:41 ` gebser [this message]
[not found] <mailman.2220.1045823872.21513.help-gnu-emacs@gnu.org>
2003-02-21 14:40 ` Stefan Monnier <foo@acm.com>
2003-02-21 14:55 ` gebser
2003-02-21 18:53 ` Oliver Scholz
2003-02-21 19:46 ` gebser
2003-02-21 20:56 ` Kai Großjohann
2003-02-22 1:14 ` gebser
2003-02-21 19:09 ` David Kastrup
[not found] <un0kr4229.fsf@ID-87814.user.dfncis.de>
2003-02-21 10:37 ` gebser
2003-02-18 13:16 gebser
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=Pine.LNX.4.44.0302191334490.16795-100000@heidegger.mousecar.net \
--to=gebser@ameritech.net \
/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).