gpt4 book ai didi

linux - 在 emacs 中取消设置键向上翻页和向下翻页

转载 作者:可可西里 更新时间:2023-11-01 11:50:10 25 4
gpt4 key购买 nike

我可以使用下面的功能取消设置左上右下的键。

(global-unset-key [left])
(global-unset-key [up])
(global-unset-key [right])
(global-unset-key [down])

但为什么我不能使用 global-unset-key 取消向上翻页和向下翻页的设置?下面的代码不起作用。

(global-unset-key [pgup])
(global-unset-key [pgdn])

最佳答案

您可以使用 C-h k *key-you-want-to-look* 查找它。

;;; from *help* buffer, after C-h k pagedown
;; <next> runs the command scroll-up, which is an interactive built-in
;; function in `C source code'.

;;; from *help* buffer, after C-h k pageup
;; <prior> runs the command scroll-down, which is an interactive built-in
;; function in `C source code'.


(define-key (current-global-map) (kbd "<next>") nil) ; use whatever
(global-unset-key (kbd "<prior>")) ; you like

关于linux - 在 emacs 中取消设置键向上翻页和向下翻页,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11014881/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com