all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* Re: Changing behavior of backward-word?
       [not found] <3ef2f793-2ada-4fe1-9ff8-51104e5f1bc0@26g2000yqv.googlegroups.com>
@ 2010-11-09 21:31 ` Elena
  2010-11-09 21:33   ` Elena
  0 siblings, 1 reply; 2+ messages in thread
From: Elena @ 2010-11-09 21:31 UTC (permalink / raw)
  To: help-gnu-emacs

On Oct 31, 10:27 pm, Johan Json <wow...@gmail.com> wrote:
> Afterthought, would this possibly break other user modes dependant on
> key M-b and/or 'backward-word'?

It would not.  This is basic Emacs customization.  Here is the code:

(defun my-backward-word ()
  (interactive)
  (backward-word)
  (backward-char))

(global-set-key (kbd "M-b") #'my-backward-word)


^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: Changing behavior of backward-word?
  2010-11-09 21:31 ` Changing behavior of backward-word? Elena
@ 2010-11-09 21:33   ` Elena
  0 siblings, 0 replies; 2+ messages in thread
From: Elena @ 2010-11-09 21:33 UTC (permalink / raw)
  To: help-gnu-emacs

On Nov 9, 10:31 pm, Elena <egarr...@gmail.com> wrote:
> On Oct 31, 10:27 pm, Johan Json <wow...@gmail.com> wrote:
>
> > Afterthought, would this possibly break other user modes dependant on
> > key M-b and/or 'backward-word'?
>
> It would not.

I should have said: if you change "backward-word", then you break
existing code, but if you just rebind "M-b", that's fine.  Existing
code depends on "backward-word", not its keybinding.


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2010-11-09 21:33 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <3ef2f793-2ada-4fe1-9ff8-51104e5f1bc0@26g2000yqv.googlegroups.com>
2010-11-09 21:31 ` Changing behavior of backward-word? Elena
2010-11-09 21:33   ` Elena

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.