editor/format: redesign
This isn't the apheleia rewrite, just a redesign to fix the module's current issues with its +onsave feature. + Rethinks how the formatter dispatches to lsp/eglot's formatter. + Stops format-all from being too imposing with its warnings. + Relies more on format-all-mode to control formatting-on-save. + Sidestep +format-buffer-a hackery when using lsp/eglot formatters. Fixes #5121 Fixes #5128 Fixes #5133
This commit is contained in:
parent
99fbdb1092
commit
68b422c786
2 changed files with 126 additions and 138 deletions
|
@ -102,9 +102,7 @@ Stolen shamelessly from go-mode"
|
|||
(defun +format-probe-a (orig-fn)
|
||||
"Use `+format-with' instead, if it is set.
|
||||
Prompts for a formatter if universal arg is set."
|
||||
(cond ((or (eq +format-with :none)
|
||||
(doom-temp-buffer-p (current-buffer))
|
||||
(derived-mode-p 'special-mode))
|
||||
(cond ((or buffer-read-only (eq +format-with :none))
|
||||
(list nil nil))
|
||||
(current-prefix-arg
|
||||
(list (or (+format-completing-read)
|
||||
|
@ -112,10 +110,18 @@ Prompts for a formatter if universal arg is set."
|
|||
t))
|
||||
(+format-with
|
||||
(list +format-with t))
|
||||
((and +format-with-lsp
|
||||
(bound-and-true-p lsp-managed-mode)
|
||||
(lsp-feature? "textDocument/rangeFormatting"))
|
||||
(list 'lsp nil))
|
||||
((and +format-with-lsp
|
||||
(bound-and-true-p eglot--managed-mode)
|
||||
(eglot--server-capable :documentFormattingProvider))
|
||||
(list 'eglot nil))
|
||||
((funcall orig-fn))))
|
||||
|
||||
;;;###autoload
|
||||
(defun +format-buffer-a (orig-fn formatter mode-result)
|
||||
(defun +format-buffer-a (formatter mode-result)
|
||||
"Advice that extends `format-all-buffer--with' to:
|
||||
|
||||
1. Enable partial/region reformatting, while preserving leading indentation,
|
||||
|
@ -124,7 +130,14 @@ Prompts for a formatter if universal arg is set."
|
|||
|
||||
See `+format/buffer' for the interactive version of this function, and
|
||||
`+format-buffer-h' to use as a `before-save-hook' hook."
|
||||
(let ((f-function (gethash formatter format-all--format-table))
|
||||
(cond
|
||||
((eq formatter 'lsp)
|
||||
(call-interactively
|
||||
(if +format-region-p #'lsp-format-region #'lsp-format-buffer)))
|
||||
((eq formatter 'eglot)
|
||||
(call-interactively
|
||||
(if +format-region-p #'eglot-format #'eglot-format-buffer)))
|
||||
((let ((f-function (gethash formatter format-all--format-table))
|
||||
(executable (format-all--formatter-executable formatter))
|
||||
(indent 0)
|
||||
(old-line-number (line-number-at-pos))
|
||||
|
@ -195,7 +208,7 @@ See `+format/buffer' for the interactive version of this function, and
|
|||
(message (pcase status
|
||||
(:error "Formatting error")
|
||||
(:already-formatted "Already formatted")
|
||||
(:reformatted (format "Reformatted with %s" formatter))))))))
|
||||
(:reformatted (format "Reformatted with %s" formatter))))))))))
|
||||
|
||||
|
||||
;;
|
||||
|
@ -221,23 +234,19 @@ If nil, BEG and/or END will default to the boundaries of the src block at point.
|
|||
(user-error "Cannot reformat an org src block in org-mode")
|
||||
(+format/region beg end))))))
|
||||
|
||||
(defun +format--buffer ()
|
||||
(if (and (eq major-mode 'org-mode)
|
||||
(org-in-src-block-p t))
|
||||
(+format--org-region (point-min) (point-max))
|
||||
(if (called-interactively-p 'any)
|
||||
(format-all-buffer)
|
||||
(ignore-errors (format-all-buffer)))))
|
||||
|
||||
;;;###autoload
|
||||
(defun +format/buffer ()
|
||||
"Reformat the current buffer using LSP or `format-all-buffer'."
|
||||
(interactive)
|
||||
(if (eq major-mode 'org-mode)
|
||||
(when (org-in-src-block-p t)
|
||||
(+format--org-region nil nil))
|
||||
(call-interactively
|
||||
(cond ((and +format-with-lsp
|
||||
(bound-and-true-p lsp-mode)
|
||||
(lsp-feature? "textDocument/formatting"))
|
||||
#'lsp-format-buffer)
|
||||
((and +format-with-lsp
|
||||
(bound-and-true-p eglot--managed-mode)
|
||||
(eglot--server-capable :documentFormattingProvider))
|
||||
#'eglot-format-buffer)
|
||||
(#'format-all-buffer)))))
|
||||
(+format--buffer))
|
||||
|
||||
;;;###autoload
|
||||
(defun +format/region (beg end)
|
||||
|
@ -247,21 +256,10 @@ WARNING: this may not work everywhere. It will throw errors if the region
|
|||
contains a syntax error in isolation. It is mostly useful for formatting
|
||||
snippets or single lines."
|
||||
(interactive "rP")
|
||||
(if (and (eq major-mode 'org-mode)
|
||||
(org-in-src-block-p t))
|
||||
(+format--org-region beg end)
|
||||
(cond ((and +format-with-lsp
|
||||
(bound-and-true-p lsp-mode)
|
||||
(lsp-feature? "textDocument/rangeFormatting"))
|
||||
(call-interactively #'lsp-format-region))
|
||||
((and +format-with-lsp
|
||||
(bound-and-true-p eglot--managed-mode)
|
||||
(eglot--server-capable :documentRangeFormattingProvider))
|
||||
(call-interactively #'eglot-format))
|
||||
((save-restriction
|
||||
(narrow-to-region beg end)
|
||||
(let ((+format-region-p t))
|
||||
(+format/buffer)))))))
|
||||
(save-restriction
|
||||
(narrow-to-region beg end)
|
||||
(+format--buffer))))
|
||||
|
||||
;;;###autoload
|
||||
(defun +format/region-or-buffer ()
|
||||
|
@ -277,11 +275,6 @@ is selected)."
|
|||
;;
|
||||
;; Hooks
|
||||
|
||||
;;;###autoload
|
||||
(defun +format-enable-on-save-h ()
|
||||
"Enables formatting on save."
|
||||
(add-hook 'before-save-hook #'+format-buffer-h nil t))
|
||||
|
||||
;;;###autoload
|
||||
(defalias '+format-buffer-h #'+format/buffer
|
||||
"Format the source code in the current buffer with minimal feedback.
|
||||
|
|
|
@ -34,38 +34,19 @@ select buffers.")
|
|||
;;
|
||||
;;; Bootstrap
|
||||
|
||||
(defun +format-enable-for-lsp-on-save-maybe-h ()
|
||||
"Enable LSP formatter when LSP client is available."
|
||||
(remove-hook 'lsp-mode-hook #'+format-enable-for-lsp-on-save-maybe-h 'local)
|
||||
(cond ((not +format-with-lsp) nil)
|
||||
((bound-and-true-p lsp-mode)
|
||||
(when (lsp-feature? "textDocument/formatting")
|
||||
(+format-enable-on-save-h))
|
||||
t)
|
||||
((bound-and-true-p eglot--managed-mode)
|
||||
(when (eglot--server-capable :documentRangeFormattingProvider)
|
||||
(+format-enable-on-save-h))
|
||||
t)
|
||||
((bound-and-true-p lsp--buffer-deferred)
|
||||
(add-hook 'lsp-mode-hook #'+format-enable-for-lsp-on-save-maybe-h
|
||||
nil 'local)
|
||||
t)))
|
||||
|
||||
(defun +format-enable-on-save-maybe-h ()
|
||||
"Enable formatting on save in certain major modes.
|
||||
|
||||
This is controlled by `+format-on-save-enabled-modes'."
|
||||
(and (not (eq major-mode 'fundamental-mode))
|
||||
(cond ((booleanp +format-on-save-enabled-modes)
|
||||
(cond ((eq major-mode 'fundamental-mode))
|
||||
((string-prefix-p " " (buffer-name)))
|
||||
((booleanp +format-on-save-enabled-modes)
|
||||
+format-on-save-enabled-modes)
|
||||
((eq (car-safe +format-on-save-enabled-modes) 'not)
|
||||
(not (memq major-mode (cdr +format-on-save-enabled-modes))))
|
||||
((memq major-mode +format-on-save-enabled-modes))
|
||||
((not (require 'format-all nil t))))
|
||||
(not (+format-enable-for-lsp-on-save-maybe-h))
|
||||
(let (current-prefix-arg) ; never prompt
|
||||
(car (format-all--probe)))
|
||||
(+format-enable-on-save-h)))
|
||||
((if (eq (car-safe +format-on-save-enabled-modes) 'not)
|
||||
(memq major-mode (cdr +format-on-save-enabled-modes))
|
||||
(not (memq major-mode +format-on-save-enabled-modes))))
|
||||
((not (require 'format-all nil t)))
|
||||
((format-all-mode +1))))
|
||||
|
||||
(when (featurep! +onsave)
|
||||
(add-hook 'after-change-major-mode-hook #'+format-enable-on-save-maybe-h))
|
||||
|
@ -82,8 +63,22 @@ This is controlled by `+format-on-save-enabled-modes'."
|
|||
;; 1. Enables partial reformatting (while preserving leading indentation),
|
||||
;; 2. Applies changes via RCS patch, line by line, to protect buffer markers
|
||||
;; and avoid any jarring cursor+window scrolling.
|
||||
(advice-add #'format-all-buffer--with :around #'+format-buffer-a)
|
||||
(advice-add #'format-all-buffer--with :override #'+format-buffer-a)
|
||||
|
||||
;; format-all-mode "helpfully" raises an error when it doesn't know how to
|
||||
;; format a buffer.
|
||||
(add-to-list 'debug-ignored-errors "^Don't know how to format ")
|
||||
|
||||
;; Don't pop up imposing warnings about missing formatters, but still log it in
|
||||
;; to *Messages*.
|
||||
(defadvice! +format--all-buffer-from-hook-a (orig-fn &rest args)
|
||||
:around #'format-all-buffer--from-hook
|
||||
(letf! (defun format-all-buffer--with (formatter mode-result)
|
||||
(and (condition-case-unless-debug e
|
||||
(format-all--formatter-executable formatter)
|
||||
(error
|
||||
(message "Warning: cannot reformat buffer because %S isn't installed"
|
||||
(gethash formatter format-all--executable-table))
|
||||
nil))
|
||||
(funcall format-all-buffer--with formatter mode-result)))
|
||||
(apply orig-fn args)))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue