Why is Ctrl+M bound to Enter in Ubuntu Jaunty? How to turn it off?
I'm using Emacs and would like to bind Ctrl+M to some other command.
|
Why is Ctrl+M bound to Enter in Ubuntu Jaunty? How to turn it off? I'm using Emacs and would like to bind Ctrl+M to some other command.
| |||||||||
feedback
|
|
I think your question is backwards. It is not C-m that is bound to Enter, it is Enter that is bound to C-m. And C-m is the same as If you run C-h k C-m, you will see something like " The Enter key is bound to C-m; if you run C-h k Enter, you will see something like " What you want to do is first remove the translation from <return> to This assumes you're using the graphical emacs. If you're running it in a terminal, this won't work, because Enter will send C-m, not <return>. You can check that using the | |||||||||
feedback
|
|
Note: The issue isn't limited to Linux, it exists on Windows (and presumably Mac) as well. Read the other (non stack-overflow) source of all knowledge: Wikipedia on Carriage Return. If you want to rebind C-m, be sure to all bind <return> otherwise you run the risk of no longer being able to use the Enter/Return key. Also, in a terminal, Emacs cannot distinguish between the two (C-m and <return>). In a plain Emacs, the Enter/Return key is bound to <return>, which is (by default) translated to RET (same thing as C-m). If you only rebound the C-m, you'd also be affecting the Enter/Return key. Try C-h k <return> and you'll see
So, rebind both in the appropriate keymap to make sure you get the behavior you want. It might be instructive to play with the following code:
Put that in your | ||||
|
feedback
|
|
The main source of the problem is that Enter and Ctrl-M both map to the same ASCII code (13). You would only be able to map them distinctly on a system that can distinguish them. | |||
feedback
|
|
God damn it, I think I got it. input-decode-map does the trick. Quote from the emacs manual: "This keymap has the same structure as other keymaps, but is used differently: it specifies translations to make while reading key sequences, rather than bindings for key sequences." It's the same principle like I've presented above, transforming Ctrl+m to something, say Ctrl+1 and map Ctrl+1 to your command. I use Ctrl+m for backward-kill-word. Here you go: (global-set-key (read-kbd-macro "C-1") 'backward-kill-word) (define-key input-decode-map "\C-m" [?\C-1]) | |||||||
feedback
|
|
Actually, this is a very tricky question, you won't get it right with: (global-set-key (kbd "") 'newline) because that return (RET) is newline in just some particular cases. You will see the weirdness I'm talking about if you try that in your .emacs I've found an ugly but working solution by using some KDE events application, and bound Ctrl+m to Ctrl+1 . I've chosen that because I wouldn't use that combination (Ctrl+1) but you can choose something else. This way, in emacs (but in my X environment) I don't get the RET (or linefeed character) when I press Ctrl+m, instead I get Ctrl+1. And then, I did something like: (global-set-key "\C-1" 'mycmd) The problem is, that now I use awesome window manager, and I don't know how to do that X mapping again. If you don't use KDE, you search for something similar in Gnome. | |||
|
feedback
|
|
(global-set-key (kbd "C-m") 'cmd) ; Where cmd is your command should remap control m... As for why ctrl+m is bound to enter. I believe it had something to do with some older keyboard not having enter,tab, backspace, etc... ( I could be grossly mistaken) For example ctrl+h is backspace, some unix operating systems will output ^H when you hit backspace on them! | |||||
feedback
|
|
It's unclear whether the previous answers have solved this question, so here's another spin on it: Historically, "return" frequently meant two things: Carriage Return, and Line Feed. Quoting wikipedia:
Long story short, there are two ASCII codes that are relevant to end-of-line (and, therefore, potentially to the return key): CR (ASCII decimal 13, or Ctrl-m) and LF (ASCII decimal 10, or Ctrl-J). I think the general convention these days is for the return or enter keys to map to ASCII 13, and thus be "return" (
If I type, instead, C-h c C-m (i.e. holding down control and pressing M), I get:
In other words, the exact same thing. Emacs (nor any other program run from the terminal) can't tell the difference between the two. (Knowing this can sometimes be handy -- if you're logged in to a system that maps things differently than the system you're coming from, you can type C-m or C-j to get the thing you want, depending on the way the mapping is screwed up.) And speaking of having the mapping screwed up, I'll just mention that there are some In the end, I think your choices are:
| |||
|
feedback
|