I've recently set up a Common Lisp programming environment in Mac OS X Leopard. One emacs module which I've found to be indispensable is paredit. Paredit is doing its part to help me wrangle my Lisp code more easily, but I've ran into a bit of a snare.
C-), bound to paredit-forward-slurp-sexp, is not forward slurping sexps but instead echoing the number 0. I'm using a Mac, alternating between iTerm and Terminal. The same problem is present in both apps.
I tried the same key combination in GNU Emacs' GUI version, and lo, it worked. Unfortunately the graphical version of Emacs does not satisfy my needs; I would like to keep using my iTerm based rig.
So I ask you, stackoverflow: what do I have to do to get the C-) combo to register with iTerm?
C-c C-)to make sure, but since you're getting a0, it's apparent that your terminal emulators (iTerm and Terminal) are transmitting a0when you pressCtrl+). You need to do two things: convince each of iTerm and Terminal to send an escape sequence when you pressCtrl+), and declare to Emacs that this escape sequence corresponds toCtrl+)(infunction-key-maporlocal-function-key-map). – Gilles Jun 7 '11 at 9:14