답변:
를 반환하는 함수에 ediff-quit
동적으로 리 바인드 y-or-n-p
하도록 조언 할 수 있습니다 t
.
(defun disable-y-or-n-p (orig-fun &rest args)
(cl-letf (((symbol-function 'y-or-n-p) (lambda (prompt) t)))
(apply orig-fun args)))
(advice-add 'ediff-quit :around #'disable-y-or-n-p)
이는 재정의보다 업스트림 변경에 더 강력합니다 ediff-quit
.
불행히도 나는 당신이 q를 리 바인드하거나 소스를 조정해야한다고 생각합니다 ediff-quit
. ediff-quit
프롬프트 소스에서 알 수 있듯이 항상 발생합니다.
(defun ediff-quit (reverse-default-keep-variants)
"Finish an Ediff session and exit Ediff.
Unselects the selected difference, if any, restores the read-only and modified
flags of the compared file buffers, kills Ediff buffers for this session
\(but not buffers A, B, C\).
If `ediff-keep-variants' is nil, the user will be asked whether the buffers
containing the variants should be removed \(if they haven't been modified\).
If it is t, they will be preserved unconditionally. A prefix argument,
temporarily reverses the meaning of this variable."
(interactive "P")
(ediff-barf-if-not-control-buffer)
(let ((ctl-buf (current-buffer))
(ctl-frm (selected-frame))
(minibuffer-auto-raise t))
(if (y-or-n-p (format "Quit this Ediff session%s? "
(if (ediff-buffer-live-p ediff-meta-buffer)
" & show containing session group" "")))
(progn
(message "")
(set-buffer ctl-buf)
(ediff-really-quit reverse-default-keep-variants))
(select-frame ctl-frm)
(raise-frame ctl-frm)
(message ""))))
나는 재정을 제안 ediff-quit
당신의 .emacs
및 사용자 지정 변수를 추가하는 소스에 패치를 제출.
emacs의 구현 소스는 항상 몇 번의 키 스트로크입니다. elisp 소스가 설치되었다고 가정하고을 C-h f입력하고 함수 이름을 입력 한 후 정의 된 링크로 이동하십시오.
나는 ediff에서 다음 q의 리 바인드를 사용합니다. 버퍼 중 하나라도 수정되면 저장 여부를 묻고 종료됩니다. 버퍼가 수정되지 않으면 종료됩니다.
(add-hook 'ediff-startup-hook
(lambda ()
(local-set-key (kbd"q") 'my-ediff-quit)))
(defun my-ediff-quit ()
"If any of the ediff buffers have been modified, ask if changes
should be saved. Then quit ediff normally, without asking for
confirmation"
(interactive)
(ediff-barf-if-not-control-buffer)
(let* ((buf-a ediff-buffer-A)
(buf-b ediff-buffer-B)
(buf-c ediff-buffer-C)
(ctl-buf (current-buffer))
(modified (remove-if-not 'buffer-modified-p
(list buf-a buf-b buf-c))))
(let ((save (if modified (yes-or-no-p "Save changes?")nil)))
(loop for buf in modified do
(progn
(set-buffer buf)
(if save
(save-buffer)
(set-buffer-modified-p nil))))
(set-buffer ctl-buf)
(ediff-really-quit nil))))