123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405 |
- ;;; completion-ui-sources.el --- Completion-UI completion sources
- ;; Copyright (C) 2009, 2012 Toby Cubitt
- ;; Author: Toby Cubitt <toby-predictive@dr-qubit.org>
- ;; Version: 0.3
- ;; Keywords: completion, UI, user interface, sources
- ;; URL: http://www.dr-qubit.org/emacs.php
- ;; This file is NOT part of Emacs.
- ;;
- ;; This file is free software: you can redistribute it and/or modify it under
- ;; the terms of the GNU General Public License as published by the Free
- ;; Software Foundation, either version 3 of the License, or (at your option)
- ;; any later version.
- ;;
- ;; This program is distributed in the hope that it will be useful, but WITHOUT
- ;; ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
- ;; FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
- ;; more details.
- ;;
- ;; You should have received a copy of the GNU General Public License along
- ;; with this program. If not, see <http://www.gnu.org/licenses/>.
- ;;; Code:
- (require 'completion-ui)
- ;; suppress compiler warnings
- (eval-when-compile
- (defvar semanticdb-find-default-throttle nil)
- (require 'ispell)
- (require 'dabbrev)
- (require 'etags)
- (require 'flyspell)
- (require 'nxml nil t)
- (require 'reftex nil t)
- (require 'semantic-ia nil t)
- (if (fboundp 'declare-function)
- (progn
- (declare-function dabbrev--reset-global-variables
- "dabbrev.el" nil)
- (declare-function dabbrev--find-all-expansions
- "dabbrev.el" (arg1 arg2))
- (declare-function tags-lazy-completion-table
- "etags.el" nil)
- (declare-function semantic-idle-summary-useful-context-p
- "ext:semantic-idle.el" nil)
- (declare-function semantic-ctxt-current-symbol
- "ext:semantic-ctxt.el" (&optional arg1))
- (declare-function semantic-analyze-current-context
- "ext:semantic-analyze.el" nil)
- (declare-function semantic-analyze-possible-completions
- "ext:semantic-analyze-complete.el" (arg1)))
- (defun dabbrev--reset-global-variables nil)
- (defun dabbrev--find-all-expansions (arg1 arg2))
- (defun tags-lazy-complete-table nil)
- (defun semantic-idle-summary-useful-context-p nil)
- (defun semantic-ctxt-current-symbol (&optional arg1))
- (defun semantic-analyze-current-context nil)
- (defun semantic-analyze-possible-completions (arg1)))
- )
- ;;;=========================================================
- ;;; combining completion sources
- (defcustom completion-ui-combine-sources-alist nil
- "Alist specifying completion sources to be combined.
- Each element of the alist must be a cons cell of the form
- (SOURCE . TEST)
- where SOURCE is a completion source (a symbol), and TEST
- specifies a test used to determine whether SOURCE is used. TEST
- must be one of the following:
- function
- called with no arguments
- source is used if it returns non-nil
- regexp
- `re-search-backward' to beginning of line
- source is used if regexp matches
- sexp
- `eval'ed
- source is used if it evals to non-nil.
- To specify that a source should always be used, set its TEST
- to t."
- :group 'completion-ui
- :type '(alist :key-type (choice :tag "source" (const nil))
- :value-type (choice :tag "test" :value t
- regexp function sexp)))
- (defun* completion-ui-update-combine-sources-defcustom
- (completion-function
- &key name non-prefix-completion no-combining &allow-other-keys)
- "Update source choices in `completion-ui-combine-sources-alist' defcustom.
- Called from `completion-ui-resiter-source-functions' hook after a
- new source is registered.
- Passing a non-nil :no-combining keyword argument to
- `completion-ui-register-source' prevents the new source being
- available for combining."
- (if (or no-combining non-prefix-completion)
- (delete `(const ,name)
- (plist-get (cdr (get 'completion-ui-combine-sources-alist
- 'custom-type))
- :key-type))
- (let ((choices (plist-get (cdr (get 'completion-ui-combine-sources-alist
- 'custom-type))
- :key-type)))
- (unless (member `(const ,name) choices)
- (delete `(const nil) choices)
- (nconc choices `((const ,name)))))))
- (add-hook 'completion-ui-register-source-functions
- 'completion-ui-update-combine-sources-defcustom)
- (defun completion-ui-combining-complete (source-spec prefix &optional maxnum)
- "Return a combined list of all completions
- from sources in SOURCE-SPEC.
- SOURCE-SPEC should be a list specifying how the completion
- sources are to be combined. Each element can be either a
- completion source (a symbol) in which case the source is always
- used, or a cons cell of the form
- (SOURCE . TEST)
- where SOURCE is a completion source (a symbol), and TEST
- specifies a test used to determine whether SOURCE is used. TEST
- must be one of the following:
- function
- called with no arguments
- source is used if it returns non-nil
- regexp
- `re-search-backward' to beginning of line
- source is used if regexp matches
- sexp
- `eval'ed
- source is used if it evals to non-nil."
- (let (completions)
- (dolist (s source-spec)
- (when (cond
- ((symbolp s) t)
- ((functionp (cdr s))
- (funcall (cdr s)))
- ((stringp (cdr s))
- (save-excursion
- (re-search-backward (cdr s) (line-beginning-position) t)))
- (t (eval (cdr s))))
- (setq completions
- (nconc completions (completion-ui-complete (car s) prefix maxnum))))
- (if maxnum
- (butlast completions (- (length completions) maxnum))
- completions))))
- (completion-ui-register-source
- completion-ui-combining-complete
- :completion-args (2 3)
- :other-args (completion-ui-combine-sources-alist)
- :name Combine
- :no-combining t)
- ;;;=========================================================
- ;;; dabbrevs
- (completion-ui-register-source
- (lambda (prefix)
- (require 'dabbrev)
- (dabbrev--reset-global-variables)
- (dabbrev--find-all-expansions prefix case-fold-search))
- :name dabbrev)
- ;;;=========================================================
- ;;; etags
- (completion-ui-register-source
- (lambda (prefix)
- (require 'etags)
- (all-completions prefix (tags-lazy-completion-table)))
- :name etags)
- ;;;=========================================================
- ;;; Elisp
- (completion-ui-register-source
- all-completions
- :completion-args 1
- :other-args (obarray)
- :name elisp
- :word-thing symbol)
- ;;;=========================================================
- ;;; file names
- (defun completion--filename-wrapper (prefix)
- ;; Return filename completions of prefix
- (let ((dir (file-name-directory prefix))
- completions)
- (mapc (lambda (file)
- (unless (or (string= file "../") (string= file "./"))
- (push (concat dir file) completions)))
- (file-name-all-completions
- (file-name-nondirectory prefix) dir))
- (nreverse completions)))
- (completion-ui-register-source
- completion--filename-wrapper
- :name files)
- ;;;=========================================================
- ;;; ispell
- (defun completion--ispell-wrapper (word)
- (require 'flyspell)
- (let (suggestions ispell-filter)
- ;; Now check spelling of word.
- (ispell-send-string "%\n") ; put in verbose mode
- (ispell-send-string (concat "^" word "\n")) ; lookup the word
- ;; Wait until ispell has processed word.
- (while (progn
- (accept-process-output ispell-process)
- (not (string= "" (car ispell-filter)))))
- ;; Remove leading empty element
- (setq ispell-filter (cdr ispell-filter))
- ;; ispell process should return something after word is sent.
- ;; Tag word as valid (i.e., skip) otherwise
- (or ispell-filter
- (setq ispell-filter '(*)))
- (when (consp ispell-filter)
- (setq suggestions (ispell-parse-output (car ispell-filter))))
- (cond
- ((or (eq suggestions t) (stringp suggestions))
- (message "Ispell: %s is correct" word)
- nil)
- ((null suggestions)
- (error "Ispell: error in Ispell process")
- nil)
- (t (car (cdr (cdr suggestions)))))))
- (completion-ui-register-source
- completion--ispell-wrapper
- :non-prefix-completion t
- :name ispell)
- ;;;=========================================================
- ;;; NXML
- (when (locate-library "nxml")
- (completion-ui-register-source
- (lambda (prefix)
- (require nxml)
- (rng-complete-qname-function prefix))
- :completion-args 1
- :other-args (t t)
- :name nxml)
- )
- ;;;=========================================================
- ;;; RefTeX
- (when (locate-library "reftex")
- (put 'latex-label 'forward-op 'latex-label-forward-word)
- ;; copied from predictive-latex.el
- (defun latex-label-forward-word (&optional n)
- ;; going backwards...
- (if (and n (< n 0))
- (unless (bobp)
- (setq n (- n))
- (when (eq (char-before) ?\\)
- (while (eq (char-before) ?\\) (backward-char))
- (setq n (1- n)))
- (dotimes (i n)
- (when (and (char-before) (= (char-syntax (char-before)) ?w))
- (backward-word 1)) ; argument not optional in Emacs 21
- (while (and (char-before)
- (or (= (char-syntax (char-before)) ?w)
- (= (char-syntax (char-before)) ?_)
- (and (= (char-syntax (char-before)) ?.)
- (/= (char-before) ?{))))
- (backward-char))))
- ;; going forwards...
- (unless (eobp)
- (setq n (if n n 1))
- (dotimes (i n)
- (when (and (char-after) (= (char-syntax (char-after)) ?w))
- (forward-word 1)) ; argument not optional in Emacs 21
- (while (and (char-after)
- (or (= (char-syntax (char-after)) ?w)
- (= (char-syntax (char-after)) ?_)
- (and (= (char-syntax (char-after)) ?.)
- (/= (char-after) ?}))))
- (forward-char))))))
- (completion-ui-register-source
- (lambda (prefix)
- (all-completions
- prefix
- (delq nil (mapcar (lambda (c) (when (stringp (car c)) (car c)))
- reftex-docstruct-symbol-1))))
- :name reftex
- :word-thing latex-label
- :no-auto-completion t
- :no-predictive t)
- )
- ;;;=========================================================
- ;;; Semantic
- (when (locate-library "semantic")
- (defun completion--semantic-prefix-wrapper ()
- ;; Return prefix at point that Semantic would complete.
- (require 'semantic-ia)
- (when (semantic-idle-summary-useful-context-p)
- (let ((prefix (semantic-ctxt-current-symbol (point))))
- (setq prefix (nth (1- (length prefix)) prefix))
- (set-text-properties 0 (length prefix) nil prefix)
- prefix)))
- (defun completion--semantic-wrapper (prefix &optional maxnum)
- ;; Return list of Semantic completions for PREFIX at point. Optional
- ;; argument MAXNUM is the maximum number of completions to return.
- (require 'semantic-ia)
- (when (semantic-idle-summary-useful-context-p)
- (let* (
- ;; don't go loading in oodles of header libraries for minor
- ;; completions if using auto-completion-mode
- ;; FIXME: don't do this iff the user invoked completion manually
- (semanticdb-find-default-throttle
- (when (and (featurep 'semanticdb-find)
- auto-completion-mode)
- (remq 'unloaded semanticdb-find-default-throttle)))
- (ctxt (semantic-analyze-current-context))
- (acomp (semantic-analyze-possible-completions ctxt)))
- (when (and maxnum (> (length acomp) maxnum))
- (setq acomp (butlast acomp (- (length acomp) maxnum))))
- (mapcar 'semantic-tag-name acomp))))
- (defun completion--semantic-enable-auto-completion nil
- ;; set variables buffer-locally when enabling Semantic auto-completion
- (when (eq auto-completion-default-source 'semantic)
- (set (make-local-variable 'auto-completion-override-syntax-alist)
- '((?. . (add word))))))
- (defun completion--semantic-disable-auto-completion nil
- ;; unset buffer-local variables when disabling Semantic auto-completion
- (when (eq auto-completion-default-source 'semantic)
- (kill-local-variable 'auto-completion-override-syntax-alist)))
- (add-hook 'auto-completion-mode-enable-hook
- 'completion--semantic-enable-auto-completion)
- (add-hook 'auto-completion-mode-disable-hook
- 'completion--semantic-disable-auto-completion)
- ;; register the Semantic source
- (completion-ui-register-source
- completion--semantic-wrapper
- :prefix-function completion--semantic-prefix-wrapper
- :completion-args 2
- :name semantic)
- )
- (provide 'completion-ui-sources)
- ;;; completion-ui-sources.el ends here
|