এই বার্তাটি কেবল অক্ষম করার কোনও উপায় আছে, তবে স্বয়ংক্রিয় সংরক্ষণের কার্যকারিতা নয়?
হ্যাঁ, ইমাক্স 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
। আমি আপনাকে একটি বাগ রিপোর্ট খোলার পরামর্শ দিচ্ছি যাতে যুক্তিটি কাস্টমাইজ করা যায়।