Function: smart-python-tag
smart-python-tag is an autoloaded and byte-compiled function defined
in hmouse-tag.el.
Signature
(smart-python-tag &optional IDENTIFIER NEXT)
Documentation
Jump to the definition of optional Python IDENTIFIER or the one at point.
Optional second arg NEXT means jump to next matching Python tag.
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hmouse-tag.el
;;;###autoload
(defun smart-python-tag (&optional identifier next)
"Jump to the definition of optional Python IDENTIFIER or the one at point.
Optional second arg NEXT means jump to next matching Python tag."
(let ((tag (or identifier (smart-python-at-tag-p t))))
;; (message "Looking for `%s'..." tag)
(smart-tags-display tag next)
;; (message "Found definition for `%s'" tag)
t))