summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorCase Duckworth2021-09-02 17:31:19 -0500
committerCase Duckworth2021-09-02 17:31:19 -0500
commita23910572a8871973a1c95746b4676f196897460 (patch)
treed89b6b813c36d1c6330de6aeaaa69b8e868e66a3
parentChange avy/link-hint keys (diff)
downloademacs-a23910572a8871973a1c95746b4676f196897460.tar.gz
emacs-a23910572a8871973a1c95746b4676f196897460.zip
Enable iscroll-mode always
-rw-r--r--init.el4
-rw-r--r--lisp/acdw.el4
2 files changed, 5 insertions, 3 deletions
diff --git a/init.el b/init.el index b5b7a57..cfedcab 100644 --- a/init.el +++ b/init.el
@@ -1464,7 +1464,9 @@ successive invocations."
1464 "C-c C-d" helpful-at-point)) 1464 "C-c C-d" helpful-at-point))
1465 1465
1466(setup (:straight iscroll) 1466(setup (:straight iscroll)
1467 (:hook-into text-mode)) 1467 (:hook-into text-mode ; Ideally, everywhere..
1468 prog-mode
1469 special-mode))
1468 1470
1469(setup (:straight lacarte) 1471(setup (:straight lacarte)
1470 (:global "<f10>" lacarte-execute-menu-command)) 1472 (:global "<f10>" lacarte-execute-menu-command))
diff --git a/lisp/acdw.el b/lisp/acdw.el index b7cf4f0..2acef4f 100644 --- a/lisp/acdw.el +++ b/lisp/acdw.el
@@ -531,7 +531,7 @@ It's called 'require-private' for historical reasons."
531 (when (fboundp mode) 531 (when (fboundp mode)
532 (funcall mode -1))) 532 (funcall mode -1)))
533 ;; enable modes 533 ;; enable modes
534 (dolist (mode '(iscroll-mode olivetti-mode)) 534 (dolist (mode '(olivetti-mode))
535 (when (fboundp mode) 535 (when (fboundp mode)
536 (funcall mode +1)))) 536 (funcall mode +1))))
537 ;; turn off 537 ;; turn off
@@ -543,7 +543,7 @@ It's called 'require-private' for historical reasons."
543 (when (fboundp mode) 543 (when (fboundp mode)
544 (funcall mode +1))) 544 (funcall mode +1)))
545 ;; disable modes 545 ;; disable modes
546 (dolist (mode '(olivetti-mode iscroll-mode)) 546 (dolist (mode '(olivetti-mode))
547 (when (fboundp mode) 547 (when (fboundp mode)
548 (funcall mode -1))))) 548 (funcall mode -1)))))
549 549