How to show all possible completions hippie-expand command creates in Emacs?
问题 I want to list all items that hippie-expand creates, then choose from them by moving the cursor and hitting RET. Is there any way to do this? 回答1: Here's what I'm using for this purpose: (global-set-key (kbd "M-i") 'complete-with-helm) (require 'ac-helm) (require 'auto-complete-config) (ac-config-default) (defun ac-complete-with-helm-auto () "Select `auto-complete' candidates by `helm'. It is useful to narrow candidates." (interactive) (let ((c (ac-candidates))) (if (= (length c) 1) (ac