Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Code completion key bindings in Emacs

Tags:

emacs

elisp

When doing a M-x describe-mode in a .el file, I noticed that the Emacs-Lisp mode actually does code completion. However, lisp-complete-symbol is bound to M-TAB. In Windows, this key binding is taken by Windows for switching the active window. Most IDE's use C-SPC, but that's taken in Emacs as well. What is a good, fairly common key binding for code completion?

like image 430
User1 Avatar asked Jan 27 '10 20:01

User1


1 Answers

C-M-i; no customization required.

like image 89
huaiyuan Avatar answered Oct 21 '22 02:10

huaiyuan