Account Options

  1. Sign in
The old Google Groups will be going away soon, but your browser is incompatible with the new version.
Google Groups Home
« Groups Home
how can I replace one keybing with another one ?
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  10 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
horse_rivers  
View profile  
 More options Sep 26 2012, 4:25 am
Newsgroups: gnu.emacs.help
From: horse_rivers <horse_riv...@126.com>
Date: Wed, 26 Sep 2012 16:25:02 +0800 (CST)
Local: Wed, Sep 26 2012 4:25 am
Subject: how can I replace one keybing with another one ?
hi,
    how can I  replace one keybing  with  another  one ? 
   for example,I want to use ctrl-a to replace ctrl-x-o,how to write my .emacs file?

thanks!


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Pascal J. Bourguignon  
View profile  
 More options Sep 26 2012, 6:10 am
Newsgroups: gnu.emacs.help
From: "Pascal J. Bourguignon" <p...@informatimago.com>
Date: Wed, 26 Sep 2012 12:10:33 +0200
Local: Wed, Sep 26 2012 6:10 am
Subject: Re: how can I replace one keybing with another one ?

horse_rivers <horse_riv...@126.com> writes:
> hi,
>     how can I  replace one keybing  with  another  one ? 
>    for example,I want to use ctrl-a to replace ctrl-x-o,how to write my .emacs file?

C-h k C-x C-o will tell you waht function is bound to C-x C-o.
(global-set-key (kbd "C-a") 'that-function) in you ~/.emacs will bind
C-a to that function.

Here, C-x C-o is bound to delete-blank-lines, so:
(global-set-key (kbd "C-a") 'delete-blank-lines)
You can activate it immediately typing C-x C-e after it.

--
__Pascal Bourguignon__                     http://www.informatimago.com/
A bad day in () is better than a good day in {}.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
horse_rivers  
View profile  
 More options Sep 26 2012, 9:07 am
Newsgroups: gnu.emacs.help
From: horse_rivers <horse_riv...@126.com>
Date: Wed, 26 Sep 2012 21:07:24 +0800 (CST)
Local: Wed, Sep 26 2012 9:07 am
Subject: Re:Re: how can I replace one keybing with another one ?

oh,yeah! thank you very much!
but what is  the meaning of kbd ?

At 2012-09-26 18:10:33,"Pascal J. Bourguignon" <p...@informatimago.com> wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Óscar Fuentes  
View profile  
 More options Sep 26 2012, 10:52 am
Newsgroups: gnu.emacs.help
From: Óscar Fuentes <o...@wanadoo.es>
Date: Wed, 26 Sep 2012 16:52:05 +0200
Local: Wed, Sep 26 2012 10:52 am
Subject: Re: how can I replace one keybing with another one ?

horse_rivers  <horse_riv...@126.com> writes:
> oh,yeah! thank you very much!
> but what is  the meaning of kbd ?

C-h f kbd [ENTER]

kbd is a compiled Lisp function in `subr.el'.

(kbd KEYS)

Convert KEYS to the internal Emacs key representation.
KEYS should be a string constant in the format used for
saving keyboard macros (see `edmacro-mode').


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
horse_rivers  
View profile  
 More options Sep 26 2012, 9:15 pm
Newsgroups: gnu.emacs.help
From: horse_rivers <horse_riv...@126.com>
Date: Thu, 27 Sep 2012 09:15:58 +0800 (CST)
Local: Wed, Sep 26 2012 9:15 pm
Subject: Re:Re: how can I replace one keybing with another one ?

is there some documentation   for  these  base knowledge?

thanks!

在 2012-09-26 22:52:05,"Óscar Fuentes" <o...@wanadoo.es> 写道:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Óscar Fuentes  
View profile  
 More options Sep 26 2012, 10:26 pm
Newsgroups: gnu.emacs.help
From: Óscar Fuentes <o...@wanadoo.es>
Date: Thu, 27 Sep 2012 04:25:54 +0200
Local: Wed, Sep 26 2012 10:25 pm
Subject: Re: how can I replace one keybing with another one ?

horse_rivers  <horse_riv...@126.com> writes:
> is there some documentation   for  these  base knowledge?

Emacs is self-documented, as demonstrated on the response to your
previous inquiry. Additionally, it comes with a manual for the Emacs
Lisp language and for Emacs proper.

To learn more explore the contents of the Help menu in your Emacs.

If your question is about representing key sequences, see the "Key
Sequences" section on the Elisp Manual.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
horse_rivers  
View profile  
 More options Sep 26 2012, 10:39 pm
Newsgroups: gnu.emacs.help
From: horse_rivers <horse_riv...@126.com>
Date: Thu, 27 Sep 2012 10:39:41 +0800 (CST)
Local: Wed, Sep 26 2012 10:39 pm
Subject: Re:Re: how can I replace one keybing with another one ?

thank you  !

if I want to  read the manul for lisp in emacs  help manul doc  ,what  key to type in emacs ?

At 2012-09-27 10:25:54,"Óscar Fuentes" <o...@wanadoo.es> wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Óscar Fuentes  
View profile  
 More options Sep 26 2012, 11:36 pm
Newsgroups: gnu.emacs.help
From: Óscar Fuentes <o...@wanadoo.es>
Date: Thu, 27 Sep 2012 05:36:15 +0200
Local: Wed, Sep 26 2012 11:36 pm
Subject: Re: how can I replace one keybing with another one ?

horse_rivers  <horse_riv...@126.com> writes:
> if I want to read the manul for lisp in emacs help manul doc ,what key
> to type in emacs ?

Go to the "Help" menu, then to "More Manuals" and finally to "Emacs Lisp
Reference".

Another way is

C-h i m elisp [INTRO]

It is recommended to first read the "Introduction to Emacs Lisp",
available from the same submenu as the other manual.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
horse_rivers  
View profile  
 More options Sep 27 2012, 2:04 am
Newsgroups: gnu.emacs.help
From: horse_rivers <horse_riv...@126.com>
Date: Thu, 27 Sep 2012 14:04:45 +0800 (CST)
Local: Thurs, Sep 27 2012 2:04 am
Subject: Re:Re: how can I replace one keybing with another one ?

when  I   read  the  manul .I will get  into  the subitem  step  by  step , so how  to come back  to  previous  view  ?

At 2012-09-27 11:36:15,"Óscar Fuentes" <o...@wanadoo.es> wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Stefan Schlee  
View profile  
 More options Sep 27 2012, 12:09 pm
Newsgroups: gnu.emacs.help
From: Stefan Schlee <stefan_sch...@yahoo.com>
Date: Thu, 27 Sep 2012 09:08:56 -0700 (PDT)
Local: Thurs, Sep 27 2012 12:08 pm
Subject: Re: Re: how can I replace one keybing with another one ?

You might want to read the html-versions of these manuals:

http://www.gnu.org/software/emacs/manual/emacs.html

http://www.gnu.org/software/emacs/emacs-lisp-intro/

http://www.gnu.org/software/emacs/manual/elisp.html

________________________________
 From: horse_rivers <horse_riv...@126.com>
To: help-gnu-em...@gnu.org
Sent: Thursday, September 27, 2012 8:04 AM
Subject: Re:Re: how can I  replace one keybing  with  another  one ?

when  I   read  the  manul .I will get  into  the subitem  step  by  step , so how  to come back  to  previous  view  ?

At 2012-09-27 11:36:15,"Óscar Fuentes" <o...@wanadoo.es> wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »