summaryrefslogtreecommitdiffstats
path: root/lisp/init-editing.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/init-editing.el')
-rw-r--r--lisp/init-editing.el6
1 files changed, 5 insertions, 1 deletions
diff --git a/lisp/init-editing.el b/lisp/init-editing.el
index 7670885..a140546 100644
--- a/lisp/init-editing.el
+++ b/lisp/init-editing.el
@@ -32,7 +32,11 @@
:ensure nil ;; package is bundled with emacs
:bind (("C-h C-f" . find-function-other-window)
- ("C-h C-k" . find-function-on-key)))
+ ("C-h C-k" . find-function-on-key))
+
+ :config
+ ;; make source files read-only when visiting
+ (setq find-function-after-hook (lambda () (read-only-mode 1))))
(defun show-file-name ()
"Show the full path file name in the minibuffer and add it to the kill ring."