Function: verilog-load-file-at-mouse
verilog-load-file-at-mouse is an interactive and byte-compiled
function defined in verilog-mode.el.gz.
Signature
(verilog-load-file-at-mouse EVENT)
Documentation
Load file under button 2 click's EVENT.
Files are checked based on verilog-library-flags.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/verilog-mode.el.gz
;; ffap-at-mouse isn't useful for Verilog mode. It uses library paths.
;; so define this function to do more or less the same as ffap-at-mouse
;; but first resolve filename...
(defun verilog-load-file-at-mouse (event)
"Load file under button 2 click's EVENT.
Files are checked based on `verilog-library-flags'."
(interactive "@e")
(save-excursion ; implement a Verilog specific ffap-at-mouse
(mouse-set-point event)
(verilog-load-file-at-point t)))