Skip to main content
Module

x/dpp_vim/deps.ts>fn.exepath

Dark powered plugin manager for Vim/neovim
Latest
function fn.exepath
import { fn } from "https://deno.land/x/dpp_vim@v0.2.0/deps.ts";
const { exepath } = fn;

If {expr} is an executable and is either an absolute path, a relative path or found in $PATH, return the full path. Note that the current directory is used when {expr} starts with "./", which may be a problem for Vim:

echo exepath(v:progpath)

If {expr} cannot be found in $PATH or is not executable then an empty string is returned.

Can also be used as a method:

GetCommand()->exepath()

Parameters

denops: Denops
expr: unknown

Returns

Promise<string>