Emacs: Remove annoying keybindings in org-mode.

This commit is contained in:
tastytea 2019-11-29 01:57:06 +01:00
parent 02fa4aaee5
commit cc681d4663
1 changed files with 16 additions and 1 deletions

View File

@ -1,6 +1,6 @@
;;; misc.el --- Miscellaneous file formats. -*- lexical-binding: t; -*-
;; Time-stamp: <2019-11-25T05:29:41+00:00>
;; Time-stamp: <2019-11-29T00:56:17+00:00>
;;; Commentary:
@ -124,5 +124,20 @@
;; Insert dummy pseudo Latin text.
(use-package lorem-ipsum)
;; Document editing, formatting, and organizing mode.
(use-package org
:bind
(:map org-mode-map ; Remove some annoying keybindings.
("M-<left>" . nil)
("M-<right>" . nil)
("M-<up>" . nil)
("M-<down>" . nil)
("S-<left>" . nil)
("S-<right>" . nil)
("C-S-<left>" . nil)
("C-S-<right>" . nil)
)
)
(provide 'text/misc)
;;; misc.el ends here