unofficial mirror of help-gnu-emacs@gnu.org
 help / color / mirror / Atom feed
* Aid for dislexia
@ 2014-06-14 15:58 Tim Johnson
  2014-06-14 17:59 ` Dmitry
  2014-06-15 14:58 ` Michael Heerdegen
  0 siblings, 2 replies; 3+ messages in thread
From: Tim Johnson @ 2014-06-14 15:58 UTC (permalink / raw)
  To: Emacs

Although I am primarily a coder, I also belong to a writer's group.
One of the members is dislexic. She has a problem reading her own
writing out loud. I note that what works for her is to touch every
word with the eraser of a pencil.

It occurs to me that what may help her to read from a
netbook/computer would be an emacs mode in which words would be
highlighted successively using 'forward-word. 

Anyone know of such a mode?

thanks
-- 
Tim 
tim at tee jay forty nine dot com or akwebsoft dot com
http://www.akwebsoft.com, http://www.tj49.com



^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: Aid for dislexia
  2014-06-14 15:58 Aid for dislexia Tim Johnson
@ 2014-06-14 17:59 ` Dmitry
  2014-06-15 14:58 ` Michael Heerdegen
  1 sibling, 0 replies; 3+ messages in thread
From: Dmitry @ 2014-06-14 17:59 UTC (permalink / raw)
  To: Tim Johnson; +Cc: Emacs

Tim Johnson <tim@akwebsoft.com> writes:

> Although I am primarily a coder, I also belong to a writer's group.
> One of the members is dislexic. She has a problem reading her own
> writing out loud. I note that what works for her is to touch every
> word with the eraser of a pencil.
>
> It occurs to me that what may help her to read from a
> netbook/computer would be an emacs mode in which words would be
> highlighted successively using 'forward-word. 
>
> Anyone know of such a mode?

https://github.com/zk-phi/spray/ looks like it does something similar,
judgin by the animated gif.

I haven't tried it, though.



^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: Aid for dislexia
  2014-06-14 15:58 Aid for dislexia Tim Johnson
  2014-06-14 17:59 ` Dmitry
@ 2014-06-15 14:58 ` Michael Heerdegen
  1 sibling, 0 replies; 3+ messages in thread
From: Michael Heerdegen @ 2014-06-15 14:58 UTC (permalink / raw)
  To: help-gnu-emacs

Hi,

I think you can simply misuse `hl-line-mode' for the highlighting,
e.g. like this:

--8<---------------cut here---------------start------------->8---
(progn
  (require 'thingatpt)
  (setq-default
   hl-line-range-function
   (lambda () (bounds-of-thing-at-point 'word))
   hl-line-face 'trailing-whitespace)
  (global-hl-line-mode))
--8<---------------cut here---------------end--------------->8---


Combined with word moving commands (M-left, M-right), I think it's
already quite what you want.


Michael.




^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2014-06-15 14:58 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-06-14 15:58 Aid for dislexia Tim Johnson
2014-06-14 17:59 ` Dmitry
2014-06-15 14:58 ` Michael Heerdegen

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).