diff options
author | JSDurand <mmemmew@gmail.com> | 2021-07-19 17:59:18 +0800 |
---|---|---|
committer | JSDurand <mmemmew@gmail.com> | 2021-07-19 17:59:18 +0800 |
commit | d69726b67601c5292dc5da46f0e3b15c0b120329 (patch) | |
tree | 22a9e7dd1be903f471b7848505bb18a9601e8f24 | |
parent | b0b673a19f05664db77b3512dc57a03c4be7c6a9 (diff) |
change: view-conf
* view-conf.el (durand-focus-map):
(view-mode-map): Bind paragraph-moving functions to 'view-mode-map'
instead of 'durand-focus-map'.
-rw-r--r-- | view-conf.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/view-conf.el b/view-conf.el index f1f015f..7e00f5c 100644 --- a/view-conf.el +++ b/view-conf.el @@ -286,8 +286,8 @@ options to choose from." (define-key durand-focus-map (vector ?\s-v) #'view-mode) (define-key durand-focus-map (vector ?\s-x) #'durand-focus) -(define-key durand-focus-map (vector ?f) #'durand-scroll-next-paragraph) -(define-key durand-focus-map (vector ?b) #'durand-scroll-prev-paragraph) +(define-key view-mode-map (vector ?f) #'durand-scroll-next-paragraph) +(define-key view-mode-map (vector ?b) #'durand-scroll-prev-paragraph) ;;;###autoload (define-minor-mode durand-focus |