emacs/code/elpa/rust-mode-20240520.749/rust-common.el
2024-07-28 12:03:37 -04:00

21 lines
534 B
EmacsLisp

;;; rust-common.el --- Common code for both modes -*-lexical-binding: t-*-
;;; Commentary:
;; rust-common code for both prog-mode and tree-sitter one
;;; Code:
(require 'rust-rustfmt)
(defcustom rust-before-save-hook 'rust-before-save-method
"Function for formatting before save."
:type 'function
:group 'rust-mode)
(defcustom rust-after-save-hook 'rust-after-save-method
"Default method to handle rustfmt invocation after save."
:type 'function
:group 'rust-mode)
(provide 'rust-common)
;;; rust-common.el ends here