Olivetti for Debian ------------------- In v1.8.0 Olivetti's upstream changed the default keybindings from 'C-[' and 'C-]' to 'C-{' and 'C-}'. This goes against the principle of least surprise and disrupts two years of user habit, so Debian's elpa-olivetti package has a patch to restore the old defaults and now digresses from upstream in this one aspect. Both upstream and Debian's Olivetti keymap conflict with org-mode's: C-c { org-table-toggle-formula-debugger C-c } org-table-toggle-coordinate-overlays or C-c [ org-agenda-file-to-front C-c ] org-remove-file Org-mode users who require keybindings for these functions when editing Org buffers in combination with olivetti-mode should add something like the following to their Emacs configuration: (defun olivetti-org-compat-keymap () (let ((map (make-sparse-keymap))) (set-keymap-parent map olivetti-mode-map) (define-key olivetti-mode-map (kbd "C-c C--") #'olivetti-shrink) (define-key olivetti-mode-map (kbd "C-c C-=") #'olivetti-expand))) (add-hook 'olivetti-mode-hook 'olivetti-org-compat-keymap) -- Nicholas D Steeves , Tue, 9 Jun 2020 21:19:33 -0400