দয়া করে মনে রাখবেন যে এর সহায়তা বাফার থেকে কমান্ডটি চাওয়া খুব সহজ। টাইপ করার পরে C-h f
শুধু টাইপ করুন M-x M-n RET
। এটি কাজ করে কারণ একটি নতুন সহায়তা বাফারে কমান্সের নামটি কার্সারের নীচে বাফারের শীর্ষে রয়েছে এবং M-n
এটি মিনিবাফারে পুনরুদ্ধার করে।
তবে, আপনি যদি extended-command-history
প্রতিটি বার এটির ডকুমেন্টেশন দেখার সময় কমান্ড যুক্ত করতে চান তবে আপনি একটি ছোট পরামর্শ দিয়ে এটি করতে পারেন:
(defun describe-function-extended-command-history (function)
"Add command name to the history."
(when (commandp function)
(add-to-history 'extended-command-history (symbol-name function))))
(advice-add 'describe-function :before #'describe-function-extended-command-history)
বা নতুন ম্যাক্রো ব্যবহার করে define-advice
সবে 25.0.50 এ যুক্ত হয়েছে:
(define-advice describe-function (:before (function))
"Add command name to the history."
(when (commandp function)
(add-to-history 'extended-command-history (symbol-name function))))
smex
এবং করেছেনhelm-M-x
? পূর্ববর্তীটি মেলপাতে রয়েছে, দ্বিতীয়টি মেলপাতে অন্তর্ভুক্ত রয়েছেhelm
।