1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-23 17:40:06 +08:00
SpaceVim/bundle/neosnippet.vim/denops/@ddc-sources/neosnippet.ts

49 lines
1.3 KiB
TypeScript

import {
BaseSource,
Candidate,
Context,
} from "https://deno.land/x/ddc_vim@v0.13.0/types.ts";
import { Denops, fn } from "https://deno.land/x/ddc_vim@v0.13.0/deps.ts#^";
export class Source extends BaseSource<{}> {
async gatherCandidates(args: {
denops: Denops;
context: Context;
}): Promise<Candidate[]> {
const snippets = await args.denops.call(
"neosnippet#helpers#get_completion_snippets",
) as Record<
string,
unknown
>[];
if (!snippets) {
return [];
}
const wordMatch = /\w+$/.exec(args.context.input);
const charsMatch = /\S+$/.exec(args.context.input);
const isWord = wordMatch && charsMatch && wordMatch[0] == charsMatch[0];
const ret: Record<string, Candidate> = {} as Record<string, Candidate>;
for (const key in snippets) {
const val = snippets[key];
const options = val.options as Record<string, Candidate>;
if (
(!options.head || /^\s*\S+$/.test(args.context.input)) &&
(!options.word || isWord) &&
(!val.regexp ||
await fn.matchstr(args.denops, args.context.input, val.regexp) != "")
) {
const word = val.word as string;
if (!(word in ret)) {
ret[word] = { word, menu: val.menu_abbr as string, };
}
}
}
return Object.values(ret);
}
params(): {} { return {}; }
}