201-hs-minor-mode: comment unneeded variables

Signed-off-by: Ralf Zerres <ralf.zerres@networkx.de>
This commit is contained in:
2020-06-26 15:53:40 +02:00
parent db5ea5444b
commit de93894e3c

View File

@@ -18,17 +18,17 @@
(add-hook 'rustic-mode-hook 'hs-minor-mode) (add-hook 'rustic-mode-hook 'hs-minor-mode)
;; Hide the comments too when you do a 'hs-hide-all' ;; Hide the comments too when you do a 'hs-hide-all'
(setq hs-hide-comments nil) ;;(setq hs-hide-comments nil)
;; Set whether isearch opens folded comments, code, or both ;; Set whether isearch opens folded comments, code, or both
;; where x is code, comments, t (both), or nil (neither) ;; where x is code, comments, t (both), or nil (neither)
(setq hs-isearch-open 'code) ;; (setq hs-isearch-open 'code)
(global-set-key (kbd "M-x h-mi") 'hs-minor-mode)
(global-set-key (kbd "C-+") 'toggle-hiding) (global-set-key (kbd "C-+") 'toggle-hiding)
(global-set-key (kbd "C-\\") 'toggle-selective-display) (global-set-key (kbd "C-\\") 'toggle-selective-display)
;; enable hs-minor-mode globaly ;; enable hs-minor-mode globaly
;; (hs-minor-mode 1) ;; (hs-minor-mode 1)
;; End:
;;; 201-hs-minor-mode.el ends here ;;; 201-hs-minor-mode.el ends here