]> code.delx.au - gnu-emacs-elpa/blob - company-abbrev.el
Added abbrev back-end.
[gnu-emacs-elpa] / company-abbrev.el
1 ;;; company-abbrev.el --- a company-mode completion back-end for abbrev
2 ;;
3 ;; Copyright (C) 2009 Nikolaj Schumacher
4 ;;
5 ;; This file is part of company 0.2.1.
6 ;;
7 ;; This program is free software; you can redistribute it and/or
8 ;; modify it under the terms of the GNU General Public License
9 ;; as published by the Free Software Foundation; either version 2
10 ;; of the License, or (at your option) any later version.
11 ;;
12 ;; This program is distributed in the hope that it will be useful,
13 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
14 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 ;; GNU General Public License for more details.
16 ;;
17 ;; You should have received a copy of the GNU General Public License
18 ;; along with this program. If not, see <http://www.gnu.org/licenses/>.
19
20 (require 'company)
21 (eval-when-compile (require 'cl))
22 (require 'abbrev)
23
24 (defun company-abbrev-insert (match)
25 "Replace MATCH with the expanded abbrev."
26 (expand-abbrev))
27
28 ;;;###autoload
29 (defun company-abbrev (command &optional arg &rest ignored)
30 "A `company-mode' completion back-end for abbrev."
31 (interactive (list 'interactive))
32 (case command
33 ('interactive (company-begin-backend 'company-abbrev
34 'company-abbrev-insert))
35 ('prefix (or (company-grab "\\_<\\(\\sw\\|\\s_\\)+\\_>") ""))
36 ('candidates (nconc
37 (delete "" (all-completions arg global-abbrev-table))
38 (delete "" (all-completions arg local-abbrev-table))))
39 ('meta (abbrev-expansion arg))
40 ('require-match t)))
41
42 (provide 'company-abbrev)
43 ;;; company-abbrev.el ends here