Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/ddc_vim/deps.ts>fn.filewritable

Dark deno-powered completion framework for neovim/Vim
Very Popular
Go to Latest
function fn.filewritable
import { fn } from "https://deno.land/x/ddc_vim@v4.0.0/deps.ts";
const { filewritable } = fn;

The result is a Number, which is 1 when a file with the name {file} exists, and can be written. If {file} doesn't exist, or is not writable, the result is 0. If {file} is a directory, and we can write to it, the result is 2.

Can also be used as a method:

GetName()->filewritable()

Parameters

denops: Denops
file: unknown

Returns

Promise<number>