unofficial mirror of help-gnu-emacs@gnu.org
 help / color / mirror / Atom feed
From: Thorsten Bonow <thorsten.bonow@post.rwth-aachen.de>
To: help-gnu-emacs@gnu.org
Subject: Re: Two spaces after end of sentences.
Date: Wed, 18 Sep 2024 14:20:02 +0200	[thread overview]
Message-ID: <87a5g5nogd.fsf@post.rwth-aachen.de> (raw)
In-Reply-To: 5EI4wSIWPjsvYLlX783u1cZGBCEI_gWZ6Z-G5tKZtHB6jNSvOVGMMsonb1r1bpIFTqvxAGBlZIH0DSCY_5owjKHujXocVCoXiA4cGMq-Vfg=@protonmail.com

>>>>> Heime  <heimeborgia@protonmail.com> writes:

> Sent with Proton Mail secure email.

> On Wednesday, September 18th, 2024 at 12:55 PM, Heime
> <heimeborgia@protonmail.com> wrote:

>> I want to have two spaces after end of sentences. But only if the
>> next letter in a capital. But when I tried this implementation,
>> spaces were introduces even when the next letter was miniscule.
>> 
>> 
>> (defun montej () "Ensure that there are two spaces after every period
>> in the current paragraph."
>> 
>> (interactive)
>> 
>> (save-excursion
>> 
>> ;; Determine the start and end of the current paragraph (let ( (start
>> (save-excursion (backward-paragraph) (point))) (end (save-excursion
>> (forward-paragraph) (point))) )
>> 
>> ;; Move to the start of the paragraph (goto-char start)
>> 
>> ;; Find period followed by fewer than two spaces (while
>> (re-search-forward "\\([.!?]\\) \\{0,1\\}\\([A-Z]\\)" end t) ;;
>> Replace with a period followed by two spaces (replace-match "\\1
>> \\2")))))

> Am also highlighting when there is just a single space.  But cannot
> remove the original overlay when I insert an additional space and run
> the command again.

> (defun montej-senfyr () "Highlight in red any instance where there is
> less than two spaces after a period between sentences in the current
> paragraph."

> (interactive)

> (save-excursion

> ;; Determine the start and end of the current paragraph (let ( (start
> (save-excursion (backward-paragraph) (point))) (end (save-excursion
> (forward-paragraph) (point))) (face '(:background "red")))

> ;; Move to the start of the paragraph (goto-char start)

> ;; Remove previous overlays if any (remove-overlays start end
> 'category 'highlight-single-space)

> ;; Locate periods followed by less than two spaces and a capital
> letter (while (re-search-forward "\\([.!?]\\) \\{0,1\\}\\([A-Z]\\)"
> end t) (let ((period-end (match-end 1)) (next-space-start
> (match-beginning 2)))

> ;; Highlight less than two spaces after period (when (and (>
> next-space-start period-end) (< (- next-space-start period-end) 2))
> (let ( (highlight-start (1+ period-end)) (highlight-end (1-
> next-space-start)) )

> (make-overlay highlight-start highlight-end) (overlay-put
> (make-overlay highlight-start highlight-end) 'category
> 'highlight-single-space) (overlay-put (make-overlay highlight-start
> highlight-end) 'face face))))))))

Hi,

maybe you should have a look at `repunctuate-sentences' (paragraphs.el)
and write your own `repunctuate-sentences-filter' to achieve what you want.

Toto

-- 
Sent from my GNU Emacs running on GNU/Linux




      reply	other threads:[~2024-09-18 12:20 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-09-18  0:55 Two spaces after end of sentences Heime
2024-09-18  2:20 ` Heime
2024-09-18 12:20   ` Thorsten Bonow [this message]

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=87a5g5nogd.fsf@post.rwth-aachen.de \
    --to=thorsten.bonow@post.rwth-aachen.de \
    --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).