Function: smart-jedi-find-file

smart-jedi-find-file is a byte-compiled function defined in hmouse-tag.el.

Signature

(smart-jedi-find-file FILE LINE COLUMN OTHER-WINDOW)

Documentation

Function that read a source FILE for jedi navigation.

It takes these arguments: (file-to-read other-window-flag line_number column_number).

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hmouse-tag.el
(defun smart-jedi-find-file (file line column other-window)
  "Function that read a source FILE for jedi navigation.
It takes these arguments: (file-to-read other-window-flag
line_number column_number)."
  (hpath:display-buffer (find-file file) other-window)
  (jedi:goto--line-column line column))