* Re: Select an entire paragraph
2005-08-18 21:19 Select an entire paragraph user
@ 2005-08-18 20:29 ` Peter Dyballa
2005-08-18 20:33 ` Denis Bueno
` (5 subsequent siblings)
6 siblings, 0 replies; 8+ messages in thread
From: Peter Dyballa @ 2005-08-18 20:29 UTC (permalink / raw)
Am 18.08.2005 um 23:19 schrieb user@domain.invalid:
> Sorry if this is not the correct forum for this. Is there a way to
> quickly select an entire paragraph (block of text surounded by
> new/blank) lines?
>
Four mouse clicks.
--
Mit friedvollen Grüßen
Pete
Zukunft statt Zustand!
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: Select an entire paragraph
2005-08-18 21:19 Select an entire paragraph user
2005-08-18 20:29 ` Peter Dyballa
@ 2005-08-18 20:33 ` Denis Bueno
2005-08-18 20:41 ` Kevin Rodgers
` (4 subsequent siblings)
6 siblings, 0 replies; 8+ messages in thread
From: Denis Bueno @ 2005-08-18 20:33 UTC (permalink / raw)
Cc: help-gnu-emacs
On 8/18/05, user@domain.invalid <user@domain.invalid> wrote:
> Hello,
> Sorry if this is not the correct forum for this. Is there a way to
> quickly select an entire paragraph (block of text surounded by
> new/blank) lines?
When your point is inside the paragraph, either do:
M-h
or
M-x mark-paragraph
-Denis
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: Select an entire paragraph
2005-08-18 21:19 Select an entire paragraph user
2005-08-18 20:29 ` Peter Dyballa
2005-08-18 20:33 ` Denis Bueno
@ 2005-08-18 20:41 ` Kevin Rodgers
2005-08-18 20:46 ` Neon Absentius
` (3 subsequent siblings)
6 siblings, 0 replies; 8+ messages in thread
From: Kevin Rodgers @ 2005-08-18 20:41 UTC (permalink / raw)
user@domain.invalid wrote:
> Sorry if this is not the correct forum for this. Is there a way to
> quickly select an entire paragraph (block of text surounded by
> new/blank) lines?
M-h M-w
--
Kevin Rodgers
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: Select an entire paragraph
2005-08-18 21:19 Select an entire paragraph user
` (2 preceding siblings ...)
2005-08-18 20:41 ` Kevin Rodgers
@ 2005-08-18 20:46 ` Neon Absentius
[not found] ` <mailman.4233.1124397334.20277.help-gnu-emacs@gnu.org>
` (2 subsequent siblings)
6 siblings, 0 replies; 8+ messages in thread
From: Neon Absentius @ 2005-08-18 20:46 UTC (permalink / raw)
On Thu, Aug 18, 2005 at 05:19:34PM -0400, user@domain.invalid wrote:
> Hello,
> Sorry if this is not the correct forum for this. Is there a way to
> quickly select an entire paragraph (block of text surounded by
> new/blank) lines?
Move to the begining of the first line of the paragraph and type
C-<space> C-<down>
(in case that these bindings don't work on your system the commands are
set-mark-command followed by forward-paragraph.)
hth
>
> TIA,
>
> John
--
Charity in capitalism is like urinating to extinguish a forest fire.
-- Neon Absentius
^ permalink raw reply [flat|nested] 8+ messages in thread
[parent not found: <mailman.4233.1124397334.20277.help-gnu-emacs@gnu.org>]
* Re: Select an entire paragraph
2005-08-18 21:19 Select an entire paragraph user
` (4 preceding siblings ...)
[not found] ` <mailman.4233.1124397334.20277.help-gnu-emacs@gnu.org>
@ 2005-08-18 21:55 ` Joe Corneli
[not found] ` <mailman.4239.1124398827.20277.help-gnu-emacs@gnu.org>
6 siblings, 0 replies; 8+ messages in thread
From: Joe Corneli @ 2005-08-18 21:55 UTC (permalink / raw)
Is there a way to <snip>
If `mark-paragraph' doesn't do it for you, try `copy-paragraph', below.
(defun copy-paragraph ()
"Save body of current paragraph to kill ring."
(interactive)
(save-excursion
(let ((beg (progn (forward-paragraph -1)
(point)))
(end (progn (forward-paragraph 1)
(point))))
(kill-ring-save beg end))))
,---- M-x apropos
| forward-paragraph
| Command: Move forward to end of paragraph.
| [...]
| mark-paragraph
| Command: Put point at beginning of this paragraph, mark at end.
`----> use it
^ permalink raw reply [flat|nested] 8+ messages in thread
[parent not found: <mailman.4239.1124398827.20277.help-gnu-emacs@gnu.org>]