Skip to main content
Module

x/dpp_vim/deps.ts>fn.findfile

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

Just like finddir(), but find a file instead of a directory. Uses 'suffixesadd'. Example:

:echo findfile("tags.vim", ".;")

Searches from the directory of the current file upwards until it finds the file "tags.vim".

Can also be used as a method:

GetName()->findfile()

Parameters

denops: Denops
name: unknown
optional
path: unknown
optional
count: unknown

Returns

Promise<string>