X-Git-Url: https://code.delx.au/gnu-emacs-elpa/blobdiff_plain/dcf0481c7b91816815e6aa95c24915289d286bbd..05cf170ddfce06d15b5d7793189dc4a841e41676:/packages/company/company-semantic.el diff --git a/packages/company/company-semantic.el b/packages/company/company-semantic.el index 796cc9ec0..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,22 +49,27 @@ (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)) " -- " @@ -72,7 +77,7 @@ doc))) (defun company-semantic-doc-buffer (tag) - (let ((doc (semantic-documentation-for-tag tag))) + (let ((doc (company-semantic-documentation-for-tag tag))) (when doc (company-doc-buffer (concat (funcall semantic-idle-summary-function tag nil t) @@ -94,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 \"->\"." @@ -115,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) @@ -128,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.