Search Results

Found 1 results for "fda60134bd2e7eeb0c519d2e9c5fc2ef" across all boards searching md5.

Anonymous /g/105581689#105583339
6/13/2025, 6:54:57 PM
>>105581689
tried adding the same jump to definition from the webm
(defun lainfind ()
(interactive)
(let ((symbol (thing-at-point 'symbol))
(file (thing-at-point 'filename)))
(cond ((file-exists-p file)
(find-file file))
(symbol
(find-function (intern symbol))))))

(define-key lisp-interaction-mode-map (kbd "<mouse-1>") #'lainfind)