Emacs: Move some keybindings to C-c prefix.
This commit is contained in:
parent
421dfbdb9c
commit
ff42df555e
|
@ -1,6 +1,6 @@
|
|||
;;; misc.el --- Miscellaneous file formats. -*- lexical-binding: t; -*-
|
||||
|
||||
;; Time-stamp: <2020-08-24T03:32:04+0200>
|
||||
;; Time-stamp: <2020-10-04T23:43:22+0200>
|
||||
|
||||
;;; Commentary:
|
||||
|
||||
|
@ -130,21 +130,37 @@
|
|||
(find-file org-default-notes-file)))
|
||||
(:map org-mode-map ; Remove some annoying keybindings.
|
||||
("M-<left>" . nil)
|
||||
("C-c M-<left>" . org-metaleft)
|
||||
("M-<right>" . nil)
|
||||
("C-c M-<right>" . org-metaright)
|
||||
("M-<up>" . nil)
|
||||
("C-c M-<up>" . org-metaup)
|
||||
("M-<down>" . nil)
|
||||
("C-c M-<down>" . org-metadown)
|
||||
("M-S-<left>" . nil)
|
||||
("C-c M-S-<left>" . org-shiftmetaleft)
|
||||
("M-S-<right>" . nil)
|
||||
("C-c M-S-<right>" . org-shiftmetaright)
|
||||
("M-S-<up>" . nil)
|
||||
("C-c M-S-<up>" . org-shiftmetaup)
|
||||
("M-S-<down>" . nil)
|
||||
("C-c M-S-<down>" . org-shiftmetadown)
|
||||
("S-<left>" . nil)
|
||||
("C-c S-<left>" . org-shiftleft)
|
||||
("S-<right>" . nil)
|
||||
("C-c S-<right>" . org-shiftright)
|
||||
("S-<up>" . nil)
|
||||
("C-c S-<up>" . org-shiftup)
|
||||
("S-<down>" . nil)
|
||||
("C-c S-<down>" . org-shiftdown)
|
||||
("C-S-<left>" . nil)
|
||||
("C-c C-S-<left>" . org-shiftcontrolleft)
|
||||
("C-S-<right>" . nil)
|
||||
("C-c C-S-<right>" . org-shiftcontrolright)
|
||||
("C-S-<up>" . nil)
|
||||
("C-S-<down>" . nil))))
|
||||
("C-c C-S-<up>" . org-shiftcontrolup)
|
||||
("C-S-<down>" . nil)
|
||||
("C-c C-S-<down>" . org-shiftcontroldown))))
|
||||
|
||||
(use-package org-bullets
|
||||
:after org
|
||||
|
|
Loading…
Reference in New Issue
Block a user