X-Git-Url: https://code.delx.au/gnu-emacs-elpa/blobdiff_plain/47d5d5b10c68e16e1f1cbf2b76b9a45e01118447..690a61b11ab405b18e6e13d3ee6f74841934bbb4:/packages/company/company-semantic.el diff --git a/packages/company/company-semantic.el b/packages/company/company-semantic.el index 372a6f6c9..a1c7d16c9 100644 --- a/packages/company/company-semantic.el +++ b/packages/company/company-semantic.el @@ -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" ) @@ -49,9 +49,8 @@ (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.") -(make-variable-buffer-local 'company-semantic--current-tags) (defun company-semantic-documentation-for-tag (tag) (when (semantic-tag-buffer tag) @@ -100,6 +99,14 @@ (push tag company-semantic--current-tags))) (delete "" (mapcar 'semantic-tag-name company-semantic--current-tags))) +(defun company-semantic-annotation (argument tags) + (let* ((tag (assoc argument tags)) + (kind (when tag (elt tag 1)))) + (cl-case kind + (function (let* ((prototype (semantic-format-tag-prototype tag nil nil)) + (par-pos (string-match "(" prototype))) + (when par-pos (substring prototype par-pos))))))) + (defun company-semantic--pre-prefix-length (prefix-length) "Sum up the length of all chained symbols before POS. Symbols are chained by \".\" or \"->\"." @@ -121,7 +128,7 @@ Symbols are chained by \".\" or \"->\"." (defun company-semantic (command &optional arg &rest ignored) "`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) @@ -134,6 +141,8 @@ Symbols are chained by \".\" or \"->\"." (company-semantic-completions arg))) (meta (funcall company-semantic-metadata-function (assoc arg company-semantic--current-tags))) + (annotation (company-semantic-annotation arg + company-semantic--current-tags)) (doc-buffer (company-semantic-doc-buffer (assoc arg company-semantic--current-tags))) ;; Because "" is an empty context and doesn't return local variables.