Aquamacs 2.4 OSX已經被設計爲使用Preferences.el
和customizations.el
代替~/.emacs
使用Aquamacs 2.4自動顯示空白字符(OSX山獅)
Preferences.el
(require 'whitespace)
;; This is for files previously created and then opened with Aquamacs.
(global-whitespace-mode t)
;; This is needed for new files and/or the scratch buffer.
;; Add additional hooks for each mode desired.
(add-hook 'text-mode-hook
(function (lambda()
(whitespace-mode t))))
;; These are keyboard shortcuts -- \C is ctrl; a hyphen is a pause.
(global-set-key "\C-cw" 'global-whitespace-mode)
(global-set-key "\C-c\C-w" 'whitespace-mode)
(global-set-key "\C-c=t" 'global-whitespace-toggle-options)
(global-set-key "\C-c_t" 'whitespace-toggle-options)
您不應該以這種方式修改問題。您可以發佈自己的解答解釋您的解決方案。原來的問題一定要保持,所以答案是有道理的。 – brasofilo 2013-04-14 20:02:40
謝謝您的建議以備將來參考。我很擔心從'ataylor'偷竊雷聲,因爲我非常感謝他的幫助。我希望能夠包含解決方案的一些代碼(不適用於評論),但我不想讓它看起來好像我用我自己的答案對他進行了提升(這會使他的幫助減弱慷慨提供)。爲了保持這個問題,我會盡量保持平衡,並且不要試圖讓任何有時間幫助我達成解決方案的人。 – lawlist 2013-04-14 20:31:49
沒有問題,你寫你自己的擴展別人的答案。只要信用來源,它全是k。事實上,你自己的解釋可能會幫助其他人,就像@ ataylor's幫助你:) - 我強烈建議你將問題恢復到原始問題併發布答案。 – brasofilo 2013-04-14 20:34:55