emacs-mode: [tab] --> (kbd "TAB")

fixes #54
This commit is contained in:
Jeremie Dimino 2014-01-17 09:17:53 +00:00
parent ee400fe51b
commit cb2711067f
1 changed files with 1 additions and 1 deletions

View File

@ -135,7 +135,7 @@ This hook is only run if exiting actually kills the buffer."
(define-key map [(control ?a)] 'utop-bol)
(define-key map [(meta ?p)] 'utop-history-goto-prev)
(define-key map [(meta ?n)] 'utop-history-goto-next)
(define-key map [tab] 'utop-complete)
(define-key map (kbd "TAB") 'utop-complete)
(define-key map [(control ?c) (control ?c)] 'utop-interrupt)
(define-key map [(control ?c) (control ?i)] 'utop-interrupt)
(define-key map [(control ?c) (control ?k)] 'utop-kill)