Skip to content

Commit

Permalink
Meta-less command invocation binding.
Browse files Browse the repository at this point in the history
  • Loading branch information
technomancy committed Dec 22, 2008
1 parent f9980ae commit af222d2
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion starter-kit-bindings.el
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,10 @@
(global-set-key (kbd "C-x M") (lambda () (interactive) (eshell t)))

;; Start a regular shell if you prefer that.
(global-set-key (kbd "C-x C-m") 'shell)
(global-set-key (kbd "C-x M-m") 'shell)

;; If you want to be able to M-x without meta
(global-set-key (kbd "C-x C-m") 'execute-extended-command)

;; Fetch the contents at a URL, display it raw.
(global-set-key (kbd "C-x h") 'view-url)
Expand Down

0 comments on commit af222d2

Please sign in to comment.