Skip to main content
Module

x/ddc_vim/deps.ts>op.includeexpr

Dark deno-powered completion framework for neovim/Vim8
Go to Latest
variable op.includeexpr
import { op } from "https://deno.land/x/ddc_vim@v2.2.0/deps.ts";
const { includeexpr } = op;

{not available when compiled without the |+find_in_path| or |+eval| features} Expression to be used to transform the string found with the 'include' option to a file name. Mostly useful to change "." to "/" for Java: > :set includeexpr=substitute(v:fname,'\.','/','g') < The "v:fname" variable will be set to the file name that was detected.