mirror of
https://codeberg.org/scip/dot-emacs.git
synced 2025-12-16 20:10:58 +01:00
13 lines
287 B
EmacsLisp
13 lines
287 B
EmacsLisp
;; *** Shell-Script Mode
|
|
|
|
;; C-c C-c [un-]comments everywhere, force in shell-script-mode as well
|
|
(add-hook
|
|
'sh-mode-hook
|
|
(function
|
|
(lambda()
|
|
(local-set-key (kbd "C-c C-c") 'comment-or-uncomment-region-or-line))))
|
|
|
|
|
|
(provide 'init-shellscript)
|
|
;;; init-shellscript.el ends here
|