all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* 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

* Re: Select an entire paragraph
       [not found] ` <mailman.4233.1124397334.20277.help-gnu-emacs@gnu.org>
@ 2005-08-18 20:58   ` Sébastien Kirche
  0 siblings, 0 replies; 8+ messages in thread
From: Sébastien Kirche @ 2005-08-18 20:58 UTC (permalink / raw)


At 22:08 on aoû 18 2005, Peter Dyballa said :

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

Maybe that forward-paragraph and  backward-paragraph (M-} and M-{) could
help without the mouse ?

Something like C-SPC M-} ?

-- 
Sébastien Kirche

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

* Select an entire paragraph
@ 2005-08-18 21:19 user
  2005-08-18 20:29 ` Peter Dyballa
                   ` (6 more replies)
  0 siblings, 7 replies; 8+ messages in thread
From: user @ 2005-08-18 21:19 UTC (permalink / raw)


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?

   TIA,

   John

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

* 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

* Re: Select an entire paragraph
       [not found] ` <mailman.4239.1124398827.20277.help-gnu-emacs@gnu.org>
@ 2005-08-19 10:22   ` Sébastien Kirche
  0 siblings, 0 replies; 8+ messages in thread
From: Sébastien Kirche @ 2005-08-19 10:22 UTC (permalink / raw)


At 22:08 on aoû 18 2005, Denis Bueno said :

> When your point is inside the paragraph, either do:
> 
> M-h
> 
> or
> 
> M-x mark-paragraph

I learnt one more thing with this one. 

I never used M-h inside  Emacs before because that combination is masked
by default by the window manager to iconize the current application.
Now i can use it.

-- 
Sébastien Kirche

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

end of thread, other threads:[~2005-08-19 10:22 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
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
     [not found] ` <mailman.4233.1124397334.20277.help-gnu-emacs@gnu.org>
2005-08-18 20:58   ` Sébastien Kirche
2005-08-18 21:55 ` Joe Corneli
     [not found] ` <mailman.4239.1124398827.20277.help-gnu-emacs@gnu.org>
2005-08-19 10:22   ` Sébastien Kirche

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.