diff options
author | Franck Cuny <franckcuny@gmail.com> | 2016-11-11 18:27:27 -0800 |
---|---|---|
committer | Franck Cuny <franckcuny@gmail.com> | 2016-11-11 18:27:27 -0800 |
commit | 61987ff6054601ef4ae376baac49e904901cf20b (patch) | |
tree | dda18a267629cf85fca75c423bf3c61b357bd8d9 | |
parent | Fix the configuration for the Python REPL. (diff) | |
download | pants.el-61987ff6054601ef4ae376baac49e904901cf20b.tar.gz |
Use 'ido' as the default completion system.
'ido' is available in Emacs since version 22.x. By having it as the default, the library can be used right away without having to install an extra dependency.
-rw-r--r-- | pants.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pants.el b/pants.el index c1834e9..7f7619b 100644 --- a/pants.el +++ b/pants.el @@ -14,7 +14,7 @@ (require 'compile) (require 'python) -(defcustom pants-completion-system 'ivy +(defcustom pants-completion-system 'ido "The completion system to be used by pants." :group 'pants :type '(radio |