help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: In search of classic "C-x x" and "C-x g" keybinding or .emacs defn


From: Pascal J. Bourguignon
Subject: Re: In search of classic "C-x x" and "C-x g" keybinding or .emacs defn
Date: Wed, 08 Dec 2010 15:36:16 -0000
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/23.2 (gnu/linux)

FooBar7 <scraig@gmail.com> writes:

> Hello,
>
> I have been using an older version GNU - 21.3 for windows that used a
> more classic key binding for register put/get.  however now with the
> more recent version aka. 23.2 these bindings are missing.
>
> I have tried to write my own global-key routine but this also has run
> into problems with set-mark and how end-mark-region operates.
>
> I researched a possible save with a compatibility key-binding called:
> copy-to-register-compatibility-binding
> insert-register-compatibility-binding
>
> But these functions are not found.
>
> Any help for a more classic feel and possibly key bindings would be
> greatly appreciated.

Identify what command you want to bind.

    M-x apropos-command RET to-register RET    ; for example.

Or, identify what command is bound on the new keys:

    C-h k   C-x r s

Bind the command to the key you want:

    (global-set-key (kbd "C-c c") 'copy-to-register)
    (global-set-key (kbd "C-c v") 'insert-register)






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


reply via email to

[Prev in Thread] Current Thread [Next in Thread]