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

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

Re: change autocompletion key in emacs


From: Martin
Subject: Re: change autocompletion key in emacs
Date: Sat, 16 Jul 2011 10:12:05 +0200
User-agent: Mutt/1.5.21 (2010-09-15)

just a small tip -- in case you haven't try already -- use hippie-expand
instead of simple dabbrev-expand.

(when (load "hippie-exp" t)
    (global-unset-key "\M-/")
    (global-set-key "\M-/" 'hippie-expand))

in your case use (M-_)

If you change it because your local keybord mapping (ie. not english) has
different symbol on the same physical key, you may like to have
*-expand being mapped to both keys, just as i do for
Czech keyboard layout:

My .emacs contains:

(when (load "hippie-exp" t)
    (global-unset-key "\M-/")
    (global-set-key "\M-/" 'hippie-expand)
    ;; for CZE keybord mapping if in use: '/' == '-'
    (global-unset-key "\M--")
    (global-set-key "\M--" 'hippie-expand))

m.

On Fri, Jul 15, 2011 at 06:30:04PM +0200, Deniz Dogan wrote:
> On 2011-07-15 13:04, Pedro Sa Costa wrote:
> >Hi,
> >
> >I would like to change the autocompletion shortcut (M-/) im emacs to (M- _).
> >How can I do that?
> >
> >
>
> Put this in your init file:
>
> (global-set-key (kbd "M-_") 'dabbrev-expand)
>
> Deniz
>



reply via email to

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