Baloff <[EMAIL PROTECTED]> writes:

> Hello
> how can I find out what is the command to do somthing.
> say I want to select "highlight" the current line to copy it to
> another window.
> do I (Set the mark and point around the current line) > M-w > change
> window > C-y?
> and btw, when you have many windows open, aren't they numbered so that
> you can issue a command to go to a spacific window instead of what I
> am doing C-x o and watch the pointer move randomly till it gets to the
> window of my choice.
> 

to find out about what commands are available try apropos. You have a
few variants -

M-x apropos
M-x apropos-command
M-x apropos-variable 
C-h a apropos (simple)

The help facility has a lot of useful information. For example, to ind
out what you can do with C-x o command, try C-h k, which calls the
describe-key command e.g. 

,----[ C-h k C-x o ]
| C-x o runs the command other-window
| (other-window ARG &optional ALL-FRAMES)
|    which is an interactive built-in function.
| 
| Select the ARG'th different window on this frame.
| All windows on current frame are arranged in a cyclic order.
| This command selects the window ARG steps away in that order.
| A negative ARG moves in the opposite order.  If the optional second
| argument ALL_FRAMES is non-nil, cycle through all frames.
`----


-- 
Tim Cross
The e-mail address on this message is FALSE (obviously!). My real e-mail is
to a company in Australia called rapttech and my login is tcross - if you 
really need to send mail, you should be able to work it out!
_______________________________________________
Help-gnu-emacs mailing list
Help-gnu-emacs@gnu.org
http://lists.gnu.org/mailman/listinfo/help-gnu-emacs

Reply via email to