SM
Size: a a a
SM
DL
DL
SM
(defun executable-find-advice (orig &rest args)
(let ((exec-path (append exec-path tramp-remote-path)))
(apply orig args)))
(advice-add 'executable-find :around #'executable-find-advice)
SM
SM
VL
VL
(defun executable-find-advice (orig &rest args)
(let ((exec-path (append exec-path tramp-remote-path)))
(apply orig args)))
(advice-add 'executable-find :around #'executable-find-advice)
SM
VL
VL
VL
SM
VL
(define-advice executable-find (:around (orig &rest args) remote-fix)
(cl-letf (((symbol-function 'exec-path) (lambda () (append exec-path tramp-remote-path))))
(apply orig args)))
VL
SM
SM
exec-path
?SM