From: Heime <heimeborgia@protonmail.com>
To: Heime <heimeborgia@protonmail.com>
Cc: Heime via Users list for the GNU Emacs text editor
<help-gnu-emacs@gnu.org>
Subject: Re: Two spaces after end of sentences.
Date: Wed, 18 Sep 2024 02:20:22 +0000 [thread overview]
Message-ID: <5EI4wSIWPjsvYLlX783u1cZGBCEI_gWZ6Z-G5tKZtHB6jNSvOVGMMsonb1r1bpIFTqvxAGBlZIH0DSCY_5owjKHujXocVCoXiA4cGMq-Vfg=@protonmail.com> (raw)
In-Reply-To: <bQtejDZop7XetHfTkFXljsor-4pL_qd1F9ufpXfTSsXDizvJfZNxpTqUld4pe1n814awCYSJGHY5jVkaE-7RD9_M_8N4zhOlwneAA_OBHtQ=@protonmail.com>
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))))))))
next prev parent reply other threads:[~2024-09-18 2: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 [this message]
2024-09-18 12:20 ` Thorsten Bonow
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='5EI4wSIWPjsvYLlX783u1cZGBCEI_gWZ6Z-G5tKZtHB6jNSvOVGMMsonb1r1bpIFTqvxAGBlZIH0DSCY_5owjKHujXocVCoXiA4cGMq-Vfg=@protonmail.com' \
--to=heimeborgia@protonmail.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).