https://github.com/coldnew/ac-octave
An auto-complete source for Octave in emacs
https://github.com/coldnew/ac-octave
auto-complete emacs-lisp octave
Last synced: over 1 year ago
JSON representation
An auto-complete source for Octave in emacs
- Host: GitHub
- URL: https://github.com/coldnew/ac-octave
- Owner: coldnew
- Created: 2011-05-07T11:43:39.000Z (about 15 years ago)
- Default Branch: master
- Last Pushed: 2022-10-25T05:20:48.000Z (over 3 years ago)
- Last Synced: 2025-01-15T12:14:36.064Z (over 1 year ago)
- Topics: auto-complete, emacs-lisp, octave
- Language: Emacs Lisp
- Homepage:
- Size: 21.5 KB
- Stars: 14
- Watchers: 4
- Forks: 9
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## ac-octave.el
*An auto-complete source for Octave*
---
[](http://www.gnu.org/licenses/gpl-2.0.html)
[](http://melpa.org/#/ac-octave)
[](http://stable.melpa.org/#/ac-octave)
### Installation
If you have `melpa` and `emacs24` installed, simply type:
M-x package-install ac-octave
Add following lines to your init file:
```elisp
(require 'ac-octave)
(add-hook 'octave-mode-hook
'(lambda () (ac-octave-setup)))
```
### Note
If you can't use ac-octave in octave-mode,
check whether `auto-complete-mode` is running or not.
### Function and Macro Documentation
#### `(ac-octave-init)`
Start inferior-octave in background before use ac-octave.
#### `(ac-octave-setup)`
Add the Octave completion source to the front of `ac-sources`.
-----