2013-07-08 16:54:54 +02:00
|
|
|
;; Font size
|
2019-12-17 18:30:52 +01:00
|
|
|
(define-key global-map (kbd "C-=") 'increase-default-text-scale) ;; '=' because there lies '+'
|
|
|
|
(define-key global-map (kbd "C--") 'decrease-default-text-scale)
|
|
|
|
(define-key global-map (kbd "C-x C-0") 'set-default-text-scale)
|
2013-07-08 16:54:54 +02:00
|
|
|
|
2019-12-14 16:59:20 +01:00
|
|
|
;; What does <tab> do? Well, it depends ...
|
|
|
|
(define-key prog-mode-map (kbd "<tab>") #'company-indent-or-complete-common)
|
2013-07-08 16:54:54 +02:00
|
|
|
|
2018-02-22 23:25:57 +01:00
|
|
|
;; imenu instead of insert-file
|
|
|
|
(global-set-key (kbd "C-x i") 'imenu)
|
|
|
|
|
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)
|
|
|
|
|
2020-12-09 14:57:25 +01:00
|
|
|
(global-set-key (kbd "C-x C-p") 'browse-repositories)
|
2015-03-11 14:42:58 +01:00
|
|
|
(global-set-key (kbd "M-g M-g") 'goto-line-with-feedback)
|
|
|
|
|
2019-12-14 16:59:20 +01:00
|
|
|
;; Miscellaneous editing commands
|
2015-03-11 14:42:58 +01:00
|
|
|
(global-set-key (kbd "C-c w") 'whitespace-cleanup)
|
2018-03-09 11:09:45 +01:00
|
|
|
(global-set-key (kbd "C-c a") 'align-regexp)
|
2019-12-15 18:09:52 +01:00
|
|
|
(global-set-key (kbd "C-c m") 'mc/mark-dwim)
|
2018-03-09 11:09:45 +01:00
|
|
|
|
|
|
|
;; Browse URLs (very useful for Gitlab's SSH output!)
|
|
|
|
(global-set-key (kbd "C-c b p") 'browse-url-at-point)
|
|
|
|
(global-set-key (kbd "C-c b b") 'browse-url)
|
2013-08-07 00:49:20 +02:00
|
|
|
|
2019-12-14 16:59:20 +01:00
|
|
|
;; C-x REALLY QUIT (idea by @magnars)
|
2013-08-07 00:49:20 +02:00
|
|
|
(global-set-key (kbd "C-x r q") 'save-buffers-kill-terminal)
|
2019-12-17 01:45:30 +01:00
|
|
|
(global-set-key (kbd "C-x C-c") 'ignore)
|
2013-08-07 00:49:20 +02:00
|
|
|
|
2018-03-30 12:16:00 +02:00
|
|
|
;; Open a file in project:
|
|
|
|
(global-set-key (kbd "C-c f") 'project-find-file)
|
|
|
|
|
2021-02-22 09:49:28 +01:00
|
|
|
;; Search in a project
|
|
|
|
(global-set-key (kbd "C-c r g") 'rg-in-project)
|
|
|
|
|
2020-08-24 01:42:50 +02:00
|
|
|
;; Open a file via magit:
|
|
|
|
(global-set-key (kbd "C-c C-f") #'magit-find-file-worktree)
|
|
|
|
|
2019-12-17 13:03:57 +01:00
|
|
|
;; Insert TODO comments
|
|
|
|
(global-set-key (kbd "C-c t") 'insert-todo-comment)
|
|
|
|
|
2020-09-25 15:12:26 +02:00
|
|
|
;; Make sharing music easier
|
|
|
|
(global-set-key (kbd "s-s w") #'songwhip-lookup-url)
|
|
|
|
|
2021-11-10 13:25:39 +01:00
|
|
|
;; Open the depot
|
|
|
|
(global-set-key (kbd "s-s d") #'tvl-depot-status)
|
|
|
|
|
2020-04-02 02:35:16 +02:00
|
|
|
;; Add subthread collapsing to notmuch-show.
|
|
|
|
;;
|
|
|
|
;; C-, closes a thread, C-. opens a thread. This mirrors stepping
|
|
|
|
;; in/out of definitions.
|
|
|
|
(define-key notmuch-show-mode-map (kbd "C-,") 'notmuch-show-open-or-close-subthread)
|
|
|
|
(define-key notmuch-show-mode-map (kbd "C-.")
|
|
|
|
(lambda ()
|
|
|
|
(interactive)
|
|
|
|
(notmuch-show-open-or-close-subthread t))) ;; open
|
|
|
|
|
2014-10-21 19:37:19 +02:00
|
|
|
(provide 'bindings)
|