Re: [O] new rule to capitalise the first word in a sentence? but how?

2016-04-28 Thread Uwe Brauer
>>> "Marcin" == Marcin Borkowski writes: > On 2016-04-27, at 19:36, Sharon Kimble wrote: >> How can I have a rule that will capitalise the first word of a new >> sentence, with the previous sentence concluding with a full stop and >> then

Re: [O] new rule to capitalise the first word in a sentence? but how?

2016-04-28 Thread Sharon Kimble
Samuel Wales writes: > very old code, maybe can be adjusted slightly to do what you want. > > (defun alpha-capitalize-sentences () > (interactive) > (let ((b (region-beginning)) > (e (region-end)) > ;;i always use double spaces but i want sentence

Re: [O] new rule to capitalise the first word in a sentence? but how?

2016-04-28 Thread Sharon Kimble
Marcin Borkowski writes: > On 2016-04-27, at 19:36, Sharon Kimble wrote: > >> How can I have a rule that will capitalise the first word of a new >> sentence, with the previous sentence concluding with a full stop and >> then one space please? This

Re: [O] new rule to capitalise the first word in a sentence? but how?

2016-04-27 Thread Samuel Wales
very old code, maybe can be adjusted slightly to do what you want. (defun alpha-capitalize-sentences () (interactive) (let ((b (region-beginning)) (e (region-end)) ;;i always use double spaces but i want sentence movement ;;to be liberal -- that is to count more things

Re: [O] new rule to capitalise the first word in a sentence? but how?

2016-04-27 Thread Marcin Borkowski
On 2016-04-27, at 19:36, Sharon Kimble wrote: > How can I have a rule that will capitalise the first word of a new > sentence, with the previous sentence concluding with a full stop and > then one space please? This would be extremely useful for me as I tend > to

[O] new rule to capitalise the first word in a sentence? but how?

2016-04-27 Thread Sharon Kimble
How can I have a rule that will capitalise the first word of a new sentence, with the previous sentence concluding with a full stop and then one space please? This would be extremely useful for me as I tend to forget to capitalise the first word, but how can it be done please? Thanks Sharon. --