On Sun, Jun 23, 2024 at 9:46 AM Eli Zaretskii wrote: > > Date: Sun, 23 Jun 2024 13:29:21 +0000 > > Cc: Daniel Colascione , > > Stefan Monnier , emacs-devel@gnu.org > > From: Alan Mackenzie > > > > I speak from experience here. org mode binds some arrow key > > combinations. Two of these, C-S- and C-S- which do some minor > > thing in org mode are bindings I use to scroll the current window > > down/up 6 lines. So, when somebody changed NEWS from outline mode to > > org mode some while ago > > NEWS is not visited using Org mode, it uses a special News mode, which > is a minor variation of Outline mode. > When I run emacs -Q, there is no binding for C-S-Up in Emacs News. That said: (use-package org :bind (:map org-mode-map > ("C-S-" . nil) ("C-S-" . nil))) Hope that helps, ~Chad