क्या इस संदेश को अक्षम करने का एक तरीका है, लेकिन ऑटो-सेविंग कार्यक्षमता नहीं?
हाँ, Emacs 27 उपयोगकर्ता विकल्प प्रस्तुत करेगा auto-save-no-message
:
auto-save-no-message is a variable defined in ‘keyboard.c’.
Its value is nil
You can customize this variable.
This variable was introduced, or its default value was changed, in
version 27.1 of Emacs.
Documentation:
Non-nil means do not print any message when auto-saving.
उद्धरण (emacs) Auto Save
:
18.6 Auto-Saving: Protection Against Disasters
==============================================
From time to time, Emacs automatically saves each visited file in a
separate file, without altering the file you actually use. This is
called “auto-saving”. It prevents you from losing more than a limited
amount of work if the system crashes.
When Emacs determines that it is time for auto-saving, it considers
each buffer, and each is auto-saved if auto-saving is enabled for it and
it has been changed since the last time it was auto-saved. When the
‘auto-save-no-message’ variable is set to ‘nil’ (the default), the
message ‘Auto-saving...’ is displayed in the echo area during
auto-saving, if any files are actually auto-saved; to disable these
messages, customize the variable to a non-‘nil’ value. Errors occurring
during auto-saving are caught so that they do not interfere with the
execution of commands you have been typing.
वैरिएबल को कस्टमाइज़ करने के लिए, आप M-xcustomize-variable
RETauto-save-no-message
RETया तो कर सकते हैं :
(setq-default auto-save-no-message t)
do-auto-save
एक तर्क मानता हैt
,keyboard.c
लेकिन उस तर्क के साथ इसे हार्डकोड किया गया हैnil
। मेरा सुझाव है कि आप बग रिपोर्ट खोलें ताकि तर्क को अनुकूलित किया जा सके।