Emacs newbie के रूप में, मुझे IDO मिला और इसे बहुत पसंद आया क्योंकि इसने फाइलों को इतनी जल्दी खोज लिया। इस साइट पर कुछ समय बिताने के बाद, मैंने हेल्म के बारे में अधिक से अधिक पढ़ा है और मैं स्विच बनाने की योजना बना रहा हूं। मेरे कुछ प्रश्न हैं:
- सबसे बड़े अंतर क्या हैं?
- विशेष रूप से, फ़ाइलों को खोजने, बफ़र्स को स्विच करने या नए आदेशों को कॉल करते समय मेरे वर्कफ़्लो को कैसे बदलना चाहिए?
मैंने इस पोस्ट का उपयोग हेल्म को स्थापित करने के लिए किया था, लेकिन मेरी फ़ाइल खोजें ( C-x C-f
) और बफर स्विच ( C-x b
) पहले की तरह ही बहुत सुंदर दिखती हैं।
यहाँ मेरा विन्यास है:
(require 'helm)
(require 'helm-config)
;; The default "C-x c" is quite close to "C-x C-c", which quits Emacs.
;; Changed to "C-c h". Note: We must set "C-c h" globally, because we
;; cannot change `helm-command-prefix-key' once `helm-config' is loaded.
(global-set-key (kbd "C-c h") 'helm-command-prefix)
(global-unset-key (kbd "C-x c"))
(define-key helm-map (kbd "<tab>") 'helm-execute-persistent-action) ; rebihnd tab to do persistent action
(define-key helm-map (kbd "C-i") 'helm-execute-persistent-action) ; make TAB works in terminal
(define-key helm-map (kbd "C-z") 'helm-select-action) ; list actions using C-z
(when (executable-find "curl")
(setq helm-google-suggest-use-curl-p t))
(setq helm-quick-update t ; do not display invisible candidates
helm-split-window-in-side-p t ; open helm buffer inside current window, not occupy whole other window
helm-buffers-fuzzy-matching t ; fuzzy matching buffer names when non--nil
helm-move-to-line-cycle-in-source t ; move to end or beginning of source when reaching top or bottom of source.
helm-ff-search-library-in-sexp t ; search for library in `require' and `declare-function' sexp.
helm-scroll-amount 8 ; scroll 8 lines other window using M-<next>/M-<prior>
helm-ff-file-name-history-use-recentf t)
(helm-mode 1)