X-Git-Url: https://code.delx.au/gnu-emacs-elpa/blobdiff_plain/2c0f29abb2928f672043cf97d689770bd2265064..170111814c0bd342c50ab84d3e3bf699c1bd1f1d:/packages/company/company-semantic.el diff --git a/packages/company/company-semantic.el b/packages/company/company-semantic.el index c376710b1..6c020a30f 100644 --- a/packages/company/company-semantic.el +++ b/packages/company/company-semantic.el @@ -1,4 +1,4 @@ -;;; company-semantic.el --- A company-mode back-end using CEDET Semantic +;;; company-semantic.el --- company-mode completion back-end using Semantic ;; Copyright (C) 2009-2011, 2013 Free Software Foundation, Inc. @@ -26,7 +26,7 @@ ;;; Code: (require 'company) -(eval-when-compile (require 'cl)) +(require 'cl-lib) (defvar semantic-idle-summary-function) (declare-function semantic-documentation-for-tag "semantic/doc" ) @@ -39,29 +39,37 @@ (declare-function semantic-tag-buffer "semantic/tag") (declare-function semantic-active-p "semantic") +(defgroup company-semantic nil + "Completion back-end using Semantic." + :group 'company) + (defcustom company-semantic-metadata-function 'company-semantic-summary-and-doc "The function turning a semantic tag into doc information." - :group 'company :type 'function) (defvar company-semantic-modes '(c-mode c++-mode jde-mode java-mode)) -(defvar company-semantic--current-tags nil +(defvar-local company-semantic--current-tags nil "Tags for the current context.") +(defun company-semantic-documentation-for-tag (tag) + (when (semantic-tag-buffer tag) + ;; When TAG's buffer is unknown, the function below raises an error. + (semantic-documentation-for-tag tag))) + (defun company-semantic-doc-or-summary (tag) - (or (semantic-documentation-for-tag tag) + (or (company-semantic-documentation-for-tag tag) (and (require 'semantic-idle nil t) (require 'semantic/idle nil t) (funcall semantic-idle-summary-function tag nil t)))) (defun company-semantic-summary-and-doc (tag) - (let ((doc (semantic-documentation-for-tag tag)) + (let ((doc (company-semantic-documentation-for-tag tag)) (summary (funcall semantic-idle-summary-function tag nil t))) (and (stringp doc) (string-match "\n*\\(.*\\)$" doc) (setq doc (match-string 1 doc))) - (concat (funcall semantic-idle-summary-function tag nil t) + (concat summary (when doc (if (< (+ (length doc) (length summary) 4) (window-width)) " -- " @@ -69,13 +77,12 @@ doc))) (defun company-semantic-doc-buffer (tag) - (let ((doc (semantic-documentation-for-tag tag))) + (let ((doc (company-semantic-documentation-for-tag tag))) (when doc - (with-current-buffer (company-doc-buffer) - (insert (funcall semantic-idle-summary-function tag nil t) - "\n" - doc) - (current-buffer))))) + (company-doc-buffer + (concat (funcall semantic-idle-summary-function tag nil t) + "\n" + doc))))) (defsubst company-semantic-completions (prefix) (ignore-errors @@ -111,9 +118,9 @@ Symbols are chained by \".\" or \"->\"." ;;;###autoload (defun company-semantic (command &optional arg &rest ignored) - "A `company-mode' completion back-end using CEDET Semantic." + "`company-mode' completion back-end using CEDET Semantic." (interactive (list 'interactive)) - (case command + (cl-case command (interactive (company-begin-backend 'company-semantic)) (prefix (and (featurep 'semantic) (semantic-active-p)