Hi Michael, Thank you, this is enough for me to solve the original issue in lsp-mode repo. As a side note, if you do search for /bin/ls executable-find will work although it is not prefixed with the remote identifier. This is what confused me initially. > Why do you want to give an > absolute file name as argument? This is a configuration setting for lsp-mode when the server is located on the remote server. Some users dont have admin access on the remote machine so they put the binary somewhere else so they have you use full path. Thanks, Ivan On Sat, Jun 20, 2020 at 10:14 PM Michael Albinus wrote: > yyoncho writes: > > > Here it is an example: > > > > Copy ls from /bin/ and name it lss. > > > > Then: > > > > ;; works > > (let ((default-directory "")) > > (executable-find "lss" 'remote)) > > > > ;; does not work > > (let ((default-directory "")) > > (executable-find "/bin/lss" 'remote)) > > But this second example doesn't make sense. You want to know the path, > where the executable "lss" is located. Why do you want to give an > absolute file name as argument? > > The docstring of executable-find says "Search for COMMAND in ‘exec-path’". > A command is a command, and not an absolute file name. > > *If* you want to use an absolute file name, you would need to give it > also to the command, like > > (let ((default-directory "")) > (executable-find "/bin/lss" 'remote)) > > where is something like /ssh:user@host: - you > see that this doesn't make sense. Search for "lss", that's it, as you > have shown with your first example. > > > Thanks, > > Ivan > > Best regards, Michael. >