* Interpreting commands
@ 2008-05-07 10:51 Don Saklad
0 siblings, 0 replies; 10+ messages in thread
From: Don Saklad @ 2008-05-07 10:51 UTC (permalink / raw)
To: help-gnu-emacs, dsaklad
Interpreting commands
a.
What's the difference?... between author and correspondent
What's the difference?... between recipient and correspondent
in
C-c C-s C-a rmail-summary-sort-by-author
C-c C-s C-c rmail-summary-sort-by-correspondent
C-c C-s C-r rmail-summary-sort-by-recepient
b.
How do you use <find> search-forward
c.
What does down mean?...
What does face mean?...
What does facemenu mean?...
What does the letter C mean?...
What does <fc> mean?...
What does the number 2 mean?... in
<C-down-mouse-2> <fc> <isearch>
facemenu-set-face-from-menu
d.
How do you use <C-down-mouse-2> <fc> <isearch>
facemenu-set-face-from-menu
e.
What does the letter i mean?... in
C-r isearch-backward
C-s isearch-forward
<C-down-mouse-2> <fc> <isearch>
facemenu-set-face-from-menu
.
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: Interpreting commands
[not found] <mailman.11283.1210157695.18990.help-gnu-emacs@gnu.org>
@ 2008-05-07 11:43 ` Jason Rumney
2008-05-07 13:29 ` John Paul Wallington
0 siblings, 1 reply; 10+ messages in thread
From: Jason Rumney @ 2008-05-07 11:43 UTC (permalink / raw)
To: help-gnu-emacs
On May 7, 11:51 am, Don Saklad <dsak...@zurich.csail.mit.edu> wrote:
> Interpreting commands
> a.
> What's the difference?... between author and correspondent
> What's the difference?... between recipient and correspondent
> in
> C-c C-s C-a rmail-summary-sort-by-author
> C-c C-s C-c rmail-summary-sort-by-correspondent
> C-c C-s C-r rmail-summary-sort-by-recepient
Correspondent = union ( author recipient )
> b.
> How do you use <find> search-forward
Enter the string that you want to search for at the prompt, then press
return.
> c.
> What does down mean?...
> What does face mean?...
> What does facemenu mean?...
> What does the letter C mean?...
> What does <fc> mean?...
> What does the number 2 mean?... in
> <C-down-mouse-2> <fc> <isearch>
> facemenu-set-face-from-menu
In <C-down-mouse-2>, C means you need to hold down the control key,
mouse-2 means you press the second mouse button (while holding
Control), the down means that the event is triggered when the mouse-2
button goes down (without the "down-", mouse button events trigger
when you release the button, which is normally not what you want when
you are opening a menu).
<fc> is the name of a menu item, facemenu-set-face-from-menu is the
name of the function that is executed.
> d.
> How do you use <C-down-mouse-2> <fc> <isearch>
> facemenu-set-face-from-menu
To find the answer to that,
C-h k <C-down-mouse-2> <fc> <isearch>
or C-h f facemenu-set-face-from-menu
> e.
> What does the letter i mean?... in
> C-r isearch-backward
> C-s isearch-forward
Interactive. isearch shows matches as you type, it does not wait
until you hit <return> like search-forward does.
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: Interpreting commands
@ 2008-05-07 12:49 Don Saklad
2008-05-09 2:21 ` Kevin Rodgers
0 siblings, 1 reply; 10+ messages in thread
From: Don Saklad @ 2008-05-07 12:49 UTC (permalink / raw)
To: help-gnu-emacs, dsaklad
Thank you Jason Rumney !
Interpreting commands
a.
What's the difference?... between author and correspondent
What's the difference?... between recipient and correspondent
in
C-c C-s C-a rmail-summary-sort-by-author
C-c C-s C-c rmail-summary-sort-by-correspondent
C-c C-s C-r rmail-summary-sort-by-recepient
> Correspondent = union ( author recipient )
Please elaborate, what does union mean?...
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: Interpreting commands
@ 2008-05-07 13:08 Don Saklad
2008-05-09 2:38 ` Kevin Rodgers
0 siblings, 1 reply; 10+ messages in thread
From: Don Saklad @ 2008-05-07 13:08 UTC (permalink / raw)
To: help-gnu-emacs, dsaklad
b.
How do you use <find> search-forward
> Enter the string that you want to search for at the prompt,
> then press return.
Esc-x find
didn't appear to exist by itself,
rather it's completed with 30 varied forms.
For RMAIL in Emacs on the C-h b table of commands
<find>
appears in angle brackets, what do the angle brackets indicate?
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: Interpreting commands
@ 2008-05-07 13:13 Don Saklad
2008-05-09 2:48 ` Kevin Rodgers
0 siblings, 1 reply; 10+ messages in thread
From: Don Saklad @ 2008-05-07 13:13 UTC (permalink / raw)
To: help-gnu-emacs, dsaklad
c.
What does down mean?...
What does face mean?...
What does facemenu mean?...
What does the letter C mean?...
What does <fc> mean?...
What does the number 2 mean?... in
<C-down-mouse-2> <fc> <isearch>
facemenu-set-face-from-menu
> In <C-down-mouse-2>, C means you need to hold down the control key,
> mouse-2 means you press the second mouse button (while holding
> Control), the down means that the event is triggered when the mouse-2
> button goes down (without the "down-", mouse button events trigger
> when you release the button, which is normally not what you want when
> you are opening a menu).
>
> <fc> is the name of a menu item, facemenu-set-face-from-menu is the
> name of the function that is executed.
What does the function do?... facemenu-set-face-from-menu
What's a face?
What's a facemenu?
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: Interpreting commands
2008-05-07 11:43 ` Jason Rumney
@ 2008-05-07 13:29 ` John Paul Wallington
0 siblings, 0 replies; 10+ messages in thread
From: John Paul Wallington @ 2008-05-07 13:29 UTC (permalink / raw)
To: help-gnu-emacs
Jason Rumney <jasonrumney@gmail.com> writes:
>> e.
>> What does the letter i mean?... in
>> C-r isearch-backward
>> C-s isearch-forward
>
> Interactive. isearch shows matches as you type, it does not wait
> until you hit <return> like search-forward does.
Actually, it stands for incremental rather than interactive.
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: Interpreting commands
[not found] <mailman.11286.1210166017.18990.help-gnu-emacs@gnu.org>
@ 2008-05-07 13:45 ` Jason Rumney
0 siblings, 0 replies; 10+ messages in thread
From: Jason Rumney @ 2008-05-07 13:45 UTC (permalink / raw)
To: help-gnu-emacs
On May 7, 2:08 pm, Don Saklad <dsak...@zurich.csail.mit.edu> wrote:
> b.
> How do you use <find> search-forward
>
> > Enter the string that you want to search for at the prompt,
> > then press return.
>
> Esc-x find
"ESC x search-forward" is what you want. <find> is a key (that is
present on some keyboards).
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: Interpreting commands
2008-05-07 12:49 Don Saklad
@ 2008-05-09 2:21 ` Kevin Rodgers
0 siblings, 0 replies; 10+ messages in thread
From: Kevin Rodgers @ 2008-05-09 2:21 UTC (permalink / raw)
To: help-gnu-emacs
Don Saklad wrote:
> Thank you Jason Rumney !
>
> Interpreting commands
> a.
> What's the difference?... between author and correspondent
> What's the difference?... between recipient and correspondent
> in
> C-c C-s C-a rmail-summary-sort-by-author
> C-c C-s C-c rmail-summary-sort-by-correspondent
> C-c C-s C-r rmail-summary-sort-by-recepient
>
> > Correspondent = union ( author recipient )
>
> Please elaborate, what does union mean?...
The set operator: http://en.wikipedia.org/wiki/Union_%28set_theory%29
--
Kevin Rodgers
Denver, Colorado, USA
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: Interpreting commands
2008-05-07 13:08 Interpreting commands Don Saklad
@ 2008-05-09 2:38 ` Kevin Rodgers
0 siblings, 0 replies; 10+ messages in thread
From: Kevin Rodgers @ 2008-05-09 2:38 UTC (permalink / raw)
To: help-gnu-emacs
Don Saklad wrote:
> For RMAIL in Emacs on the C-h b table of commands
> <find>
> appears in angle brackets, what do the angle brackets indicate?
That is Emacs notation for a keyboard key e.g. <RET>, <TAB>, <SPC>,
<DEL>, <ESC>. Lowercase names such as <f1> or <find> refer to
function keys, which may or may not be present on any given keyboard.
--
Kevin Rodgers
Denver, Colorado, USA
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: Interpreting commands
2008-05-07 13:13 Don Saklad
@ 2008-05-09 2:48 ` Kevin Rodgers
0 siblings, 0 replies; 10+ messages in thread
From: Kevin Rodgers @ 2008-05-09 2:48 UTC (permalink / raw)
To: help-gnu-emacs
Don Saklad wrote:
> What does the function do?... facemenu-set-face-from-menu
>
> What's a face?
See the "Faces" section (aka node) of the Emacs manual and the
"Stanadard Faces" node that immediately follows it.
> What's a facemenu?
It is the prefix for the commands accessible via the Edit -> Text
Properties -> Faces menu, which are defined in the facemenu.el
file. See the "Format Faces" node of the Emacs manual.
--
Kevin Rodgers
Denver, Colorado, USA
^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2008-05-09 2:48 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-05-07 13:08 Interpreting commands Don Saklad
2008-05-09 2:38 ` Kevin Rodgers
[not found] <mailman.11286.1210166017.18990.help-gnu-emacs@gnu.org>
2008-05-07 13:45 ` Jason Rumney
-- strict thread matches above, loose matches on Subject: below --
2008-05-07 13:13 Don Saklad
2008-05-09 2:48 ` Kevin Rodgers
2008-05-07 12:49 Don Saklad
2008-05-09 2:21 ` Kevin Rodgers
[not found] <mailman.11283.1210157695.18990.help-gnu-emacs@gnu.org>
2008-05-07 11:43 ` Jason Rumney
2008-05-07 13:29 ` John Paul Wallington
2008-05-07 10:51 Don Saklad
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.