답변:
다음과 같은 것을 사용할 수 있습니다.
(defun my-flyspell-auto-correct-and-space ()
(interactive)
(flyspell-auto-correct-word) ;; Auto-correct the word at point
(when (not (or (looking-at " ") ;; If after the correction we are in the
(eolp))) ;; middle of the word, forward to the end
(forward-word)) ;; of the word.
(insert " ")) ;; insert a space
(global-set-key (kbd "SPC") 'my-flyspell-auto-correct-and-space)
(global-set-key " " 'my-flyspell-auto-correct-and-space)
또는 하나를 사용할 수 있습니다(global-set-key (kbd "SPC") 'my-flyspell-auto-correct-and-space)