all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Emanuel Berg <moasen@zoho.com>
To: help-gnu-emacs@gnu.org
Subject: Re: Flyspell difficult to configure, documentation not honest
Date: Fri, 13 Jul 2018 20:41:09 +0200	[thread overview]
Message-ID: <86fu0n7zcq.fsf@zoho.com> (raw)
In-Reply-To: mailman.3536.1531501486.1292.help-gnu-emacs@gnu.org

Eric S Fraga wrote:

>> OK, but why not just spell check when you
>> are done and have the typing/spellchecking
>> processes separated?
>
> Simple: especially with emails, I forget to
> do so and I end up with less than appealing
> results... The auto-correct features of
> flyspell allow me to continue writing and
> only correct when I pause.

OK, so the idle timer does it. Still it would
seem it would happen fast enough for my taste.

In your situation (forgetting to spellcheck)
I would bind it to a shortcut and have it enter
my muscle memory. If I still forgot about it,
I would tie it to some appropriate hook, be it
`message-send-hook'.

I already have that do this (the below code),
which enables me to use the same interface for
mail and Usenet (the "Newsgroups" or "To"
header that is empty is removed).

(defun remove-empty-headers ()
  (interactive)
  (goto-char (point-min))
  (while (re-search-forward "\\(To\\|Newsgroups\\): \n"
                            (get-header-separator-pos)
                            t) ; NOERROR
    (replace-match "") ))

;; (setq message-send-hook nil)
(defun message-send-hook-f ()
  (remove-empty-headers) )
(setq message-send-hook #'message-send-hook-f)

But to each his/her own, as always. Here, the
results don't vary. Or they do, which is
the point.

-- 
underground experts united
http://user.it.uu.se/~embe8573


  parent reply	other threads:[~2018-07-13 18:41 UTC|newest]

Thread overview: 27+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <974173872.5393015.1531407541695.ref@mail.yahoo.com>
2018-07-12 14:59 ` Flyspell difficult to configure, documentation not honest R. Diez
2018-07-12 16:26   ` Eli Zaretskii
     [not found] ` <mailman.3464.1531407559.1292.help-gnu-emacs@gnu.org>
2018-07-12 17:30   ` Emanuel Berg
2018-07-12 21:01     ` Brett Gilio
2018-07-13  7:15       ` Eli Zaretskii
2018-07-13 11:31       ` Gregor Zattler
2018-07-13 12:50         ` Devin Prater
2018-07-13 13:35         ` Teemu Likonen
     [not found]         ` <mailman.3518.1531488931.1292.help-gnu-emacs@gnu.org>
2018-07-13 14:42           ` Emanuel Berg
2018-07-13  7:41     ` Eric S Fraga
2018-07-13 17:08       ` Bob Newell
2018-07-14  8:58         ` Eric S Fraga
2018-07-14  9:15           ` tomas
2018-07-14 17:47           ` Bob Newell
2018-07-14 18:59             ` Devin Prater
2018-07-15  1:45           ` Brett Gilio
2018-07-15  2:42             ` Eli Zaretskii
     [not found]     ` <mailman.3502.1531467702.1292.help-gnu-emacs@gnu.org>
2018-07-13 10:22       ` Emanuel Berg
2018-07-13 17:04         ` Eric S Fraga
2018-07-13 19:02           ` Brett Gilio
2018-07-14  9:01             ` Eric S Fraga
     [not found]         ` <mailman.3536.1531501486.1292.help-gnu-emacs@gnu.org>
2018-07-13 18:41           ` Emanuel Berg [this message]
2018-07-13 19:06             ` Brett Gilio
2018-07-14  9:03               ` Eric S Fraga
2018-07-14  9:02             ` Eric S Fraga
     [not found] <1186940967.5630978.1531432200575.ref@mail.yahoo.com>
2018-07-12 21:50 ` R. Diez
2018-07-13  6:35   ` Eli Zaretskii

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=86fu0n7zcq.fsf@zoho.com \
    --to=moasen@zoho.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.
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.