emacs-prelude/core/prelude-global-keybindings.el

113 lines
3.6 KiB
EmacsLisp
Raw Normal View History

2012-04-17 17:47:05 +03:00
;;; prelude-global-keybindings.el --- Emacs Prelude: some useful keybindings.
;;
2020-01-20 16:35:36 +02:00
;; Copyright © 2011-2020 Bozhidar Batsov
2012-04-17 17:47:05 +03:00
;;
;; Author: Bozhidar Batsov <bozhidar@batsov.com>
2013-03-07 09:57:33 +02:00
;; URL: https://github.com/bbatsov/prelude
2012-04-17 17:47:05 +03:00
;; This file is not part of GNU Emacs.
;;; Commentary:
;; Lots of useful keybindings.
;;; License:
;; This program is free software; you can redistribute it and/or
;; modify it under the terms of the GNU General Public License
;; as published by the Free Software Foundation; either version 3
;; of the License, or (at your option) any later version.
;;
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;;
;; You should have received a copy of the GNU General Public License
;; along with GNU Emacs; see the file COPYING. If not, write to the
;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
;; Boston, MA 02110-1301, USA.
;;; Code:
;; Align your code in a pretty way.
(global-set-key (kbd "C-x \\") 'align-regexp)
;; Font size
(global-set-key (kbd "C-+") 'text-scale-increase)
(global-set-key (kbd "C--") 'text-scale-decrease)
2012-04-17 17:47:05 +03:00
;; Window switching. (C-x o goes to the next window)
(global-set-key (kbd "C-x O") (lambda ()
(interactive)
(other-window -1))) ;; back one
;; Indentation help
2016-05-03 06:14:31 +03:00
(global-set-key (kbd "C-^") 'crux-top-join-line)
2020-09-23 10:22:11 +03:00
2012-04-17 17:47:05 +03:00
;; Start proced in a similar manner to dired
2014-05-28 14:17:26 +03:00
(unless (eq system-type 'darwin)
2020-09-23 10:22:11 +03:00
(global-set-key (kbd "C-x p") 'proced))
2012-04-17 17:47:05 +03:00
;; 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)))
;; Start a regular shell if you prefer that.
(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") 'smex)
2012-04-17 17:47:05 +03:00
;; A complementary binding to the apropos-command (C-h a)
(define-key 'help-command "A" 'apropos)
2012-04-17 17:47:05 +03:00
2014-05-27 10:22:51 +03:00
;; A quick major mode help with discover-my-major
(define-key 'help-command (kbd "C-m") 'discover-my-major)
(define-key 'help-command (kbd "C-f") 'find-function)
(define-key 'help-command (kbd "C-k") 'find-function-on-key)
(define-key 'help-command (kbd "C-v") 'find-variable)
(define-key 'help-command (kbd "C-l") 'find-library)
2014-11-13 15:58:28 +02:00
(define-key 'help-command (kbd "C-i") 'info-display-manual)
2017-08-30 20:01:31 +03:00
;; replace zap-to-char functionality with the more powerful zop-to-char
(global-set-key (kbd "M-z") 'zop-up-to-char)
(global-set-key (kbd "M-Z") 'zop-to-char)
;; kill lines backward
2020-09-23 10:14:19 +03:00
(global-set-key (kbd "C-<backspace>") 'crux-kill-line-backwards)
2016-05-03 06:14:31 +03:00
(global-set-key [remap kill-whole-line] 'crux-kill-whole-line)
2013-04-09 15:18:08 +03:00
2012-04-17 17:47:05 +03:00
;; Activate occur easily inside isearch
(define-key isearch-mode-map (kbd "C-o") 'isearch-occur)
2012-04-17 17:47:05 +03:00
;; use hippie-expand instead of dabbrev
(global-set-key (kbd "M-/") 'hippie-expand)
;; replace buffer-menu with ibuffer
(global-set-key (kbd "C-x C-b") 'ibuffer)
;; toggle menu-bar visibility
(global-set-key (kbd "<f12>") 'menu-bar-mode)
(global-set-key (kbd "C-x g") 'magit-status)
(global-set-key (kbd "C-x M-g") 'magit-dispatch)
2012-04-17 17:47:05 +03:00
(global-set-key (kbd "C-=") 'er/expand-region)
2020-09-23 10:12:27 +03:00
(global-set-key (kbd "C-c v") 'avy-goto-word-or-subword-1)
2015-05-22 08:51:32 +03:00
(global-set-key (kbd "s-.") 'avy-goto-word-or-subword-1)
;; improved window navigation with ace-window
(global-set-key (kbd "s-w") 'ace-window)
(global-set-key [remap other-window] 'ace-window)
2012-04-17 17:47:05 +03:00
(provide 'prelude-global-keybindings)
;;; prelude-global-keybindings.el ends here