我已经配置了AutoComplete来帮助我编写Ruby程序,但在irb窗口中,它已经关闭了。如何打开它并在随后的Emacs启动中保持这种状态?
答案 0 :(得分:2)
输入您的配置:
(defun my-inf-ruby-mode-hook ()
(set (make-local-variable 'ac-auto-start) 2)
(set (make-local-variable 'ac-auto-show-menu) t)
)
(add-hook 'inf-ruby-mode-hook 'my-inf-ruby-mode-hook)
我认为,您还需要在此挂钩中设置ac-sources
变量,因此它将使用ruby词典...