আপনি যে পরিবর্তনশীলটি সন্ধান করছেন তা হ'ল ispell-program-name
। এটি আপনার কোথাও স্টাফ করুন .emacs
:
(setq ispell-program-name "/path/to/ispell")
অথবা ব্যবহার M-x set-variable
ইত্যাদি
তথ্যসূত্র:
সূত্র থেকে ispell.el
(defcustom ispell-program-name
(or (locate-file "aspell" exec-path exec-suffixes 'file-executable-p)
(locate-file "ispell" exec-path exec-suffixes 'file-executable-p)
(locate-file "hunspell" exec-path exec-suffixes 'file-executable-p)
"ispell")
"Program invoked by \\[ispell-word] and \\[ispell-region] commands."
:type 'string
:group 'ispell)
আরও দেখুন: http://emacswiki.org/emacs/InteractiveSpell
যখনই আপনি কোনও ইম্যাক্স ফাংশনটি খুঁজে পাবেন না, মনে রাখবেন C-h f
(বা একটি ভেরিয়েবল C-h v
:)। প্রম্পটে প্রবেশ ispell
করা Describe function
আপনাকে তা জানায় ispell is an interactive compiled Lisp function in 'ispell.el'.
এবং সেখান থেকে আপনি সাধারণত যা সন্ধান করছেন তা খুঁজে পেতে পারেন।