2013-07-08 16:54:54 +02:00
|
|
|
;; Various keybindings, most of them taken from starter-kit-bindings
|
|
|
|
|
|
|
|
;; Font size
|
|
|
|
(define-key global-map (kbd "C-+") 'text-scale-increase)
|
|
|
|
(define-key global-map (kbd "C--") 'text-scale-decrease)
|
|
|
|
|
|
|
|
;; Use regex searches by default.
|
|
|
|
(global-set-key (kbd "C-s") 'isearch-forward-regexp)
|
|
|
|
(global-set-key (kbd "\C-r") 'isearch-backward-regexp)
|
|
|
|
(global-set-key (kbd "M-%") 'query-replace-regexp)
|
|
|
|
(global-set-key (kbd "C-M-s") 'isearch-forward)
|
|
|
|
(global-set-key (kbd "C-M-r") 'isearch-backward)
|
|
|
|
(global-set-key (kbd "C-M-%") 'query-replace)
|
|
|
|
|
|
|
|
;; Jump to a definition in the current file. (Protip: this is awesome.)
|
|
|
|
(global-set-key (kbd "C-x C-i") 'imenu)
|
|
|
|
|
2013-07-15 01:06:32 +02:00
|
|
|
;; Ace-jump-mode
|
2013-08-06 13:27:26 +02:00
|
|
|
(global-set-key (kbd "M-j") 'ace-jump-word-mode)
|
2013-07-15 01:06:32 +02:00
|
|
|
|
|
|
|
;; Jump to next occurence of char
|
2013-08-06 23:46:26 +02:00
|
|
|
(global-set-key (kbd "C-c f") 'iy-go-to-char)
|
2013-07-15 01:06:32 +02:00
|
|
|
|
2013-07-08 16:54:54 +02:00
|
|
|
;; Window switching. (C-x o goes to the next window)
|
|
|
|
(windmove-default-keybindings) ;; Shift+direction
|
|
|
|
|
|
|
|
;; Start eshell or switch to it if it's active.
|
|
|
|
(global-set-key (kbd "C-x m") 'eshell)
|
|
|
|
|
|
|
|
;; Start a new eshell even if one is active.
|
|
|
|
(global-set-key (kbd "C-x M") (lambda () (interactive) (eshell t)))
|
|
|
|
|
2013-07-19 13:57:13 +02:00
|
|
|
;; Eval sexp and replace it with result
|
|
|
|
(global-set-key (kbd "C-c e") 'esk-eval-and-replace)
|
|
|
|
|
2013-07-08 16:54:54 +02:00
|
|
|
;; Start a regular shell if you prefer that.
|
|
|
|
(global-set-key (kbd "C-x C-m") 'shell)
|
|
|
|
|
|
|
|
;; So good!
|
|
|
|
(global-set-key (kbd "C-c g") 'magit-status)
|
|
|
|
|
|
|
|
;; Add a fullscreen toggle
|
|
|
|
(global-set-key (kbd "M-RET") 'toggle-frame-fullscreen)
|
|
|
|
|
2013-08-05 11:54:38 +02:00
|
|
|
;; Replace standard goto-line with goto-line-with-feedback
|
|
|
|
(global-set-key (kbd "M-g g") 'goto-line-with-feedback)
|
2013-08-07 00:49:20 +02:00
|
|
|
|
|
|
|
;; Goodness from @magnars
|
|
|
|
;; I don't need to kill emacs that easily
|
|
|
|
;; the mnemonic is C-x REALLY QUIT
|
|
|
|
(global-set-key (kbd "C-x r q") 'save-buffers-kill-terminal)
|
|
|
|
(global-set-key (kbd "C-x C-c") 'delete-frame)
|
|
|
|
|
|
|
|
;; Create new frame
|
|
|
|
(define-key global-map (kbd "C-x C-n") 'make-frame-command)
|
|
|
|
|
|
|
|
(provide 'init-bindings)
|