https://github.com/coldnew/ac-octave.git
git clone 'git://github.com/coldnew/ac-octave.git'
An auto-complete source for Octave
If you have melpa
and emacs24
installed, simply type:
M-x package-install ac-octave
Add following lines to your init file:
(require 'ac-octave)
(defun ac-octave-mode-setup ()
(setq ac-sources '(ac-source-octave)))
(add-hook 'octave-mode-hook
'(lambda () (ac-octave-mode-setup)))
If you can't use ac-octave in octave-mode,
check whether auto-complete-mode
is running or not.
(ac-octave-init)
Start inferior-octave in background before use ac-octave.
—–