ในฐานะผู้เริ่มต้นใช้งาน Emacs ฉันพบว่า IDO และรักมันเพราะทำให้การค้นหาไฟล์เร็วขึ้นมาก หลังจากใช้เวลาบนไซต์นี้ฉันได้อ่านเกี่ยวกับเฮล์มมากขึ้นเรื่อย ๆ และฉันก็วางแผนจะเปลี่ยน บางคำถามของฉันคือ:
- อะไรคือความแตกต่างที่ยิ่งใหญ่ที่สุด?
- เวิร์กโฟลว์ของฉันควรเปลี่ยนอย่างไรเมื่อค้นหาไฟล์สลับบัฟเฟอร์หรือเรียกคำสั่งใหม่
ฉันใช้โพสต์นี้เพื่อตั้งค่า Helm แต่ไฟล์ค้นหาของฉัน ( 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)
1
เมื่อคุณรู้แล้วคุณลืมผูกคำสั่งเฉพาะ Helm เพื่อแทนที่คำสั่ง Emacs หุ้น หากคุณยังคงอ่านคำแนะนำสำหรับคำสั่ง Helm แต่ละคำคุณจะเห็นว่าฉันใส่การเชื่อมโยงคีย์ (ถ้าเป็นไปได้) และการตั้งค่าในแต่ละส่วน อย่างไรก็ตามเพลิดเพลินไปกับ Helm :)
—
Tu Do