auto-complete-sage

https://github.com/stakemori/auto-complete-sage.git

git clone 'git://github.com/stakemori/auto-complete-sage.git'
1

auto-complete-sage

melpa badge melpa stable badge Build Status

Overview

auto-complete-sage provides auto-complete sources for sage-shell-mode.

ac-sage

Installation

You can install auto-complete-sage from MELPA by package.el (M-x package-install auto-complete-sage).

For the setting of auto-complete, see the manual of auto-complete-mode.

auto-complete-sage provides specific sources for sage-shell-mode. To add these sources to ac-sources, put the following lines to "~/.emacs.d/init.el": lisp (add-hook 'sage-shell:sage-mode-hook 'ac-sage-setup) (add-hook 'sage-shell-mode-hook 'ac-sage-setup)

Tab Completion

auto-complete-sage replaces the default completion function of sage-shell-mode (completion-at-point) by auto-complete. If you want to use completion-at-point for the Tab completion, put the following line to "~/.emacs.d/init.el":

(eval-after-load "auto-complete-sage"
  '(setq sage-shell:completion-function 'completion-at-point))

Customization

For more customization, M-x customize-group RET auto-complete-sage.