UNPKG

@unisnips/ultisnips

Version:

Utilities for converting ultisnips in unisnips project

12 lines (11 loc) 499 B
import { UnisnipsParser, SnippetDefinition, UnisnipsPlugin } from '@unisnips/core'; export * from './util/position'; declare const PLUGIN_ULTISNIPS: UnisnipsParser & UnisnipsPlugin; export default PLUGIN_ULTISNIPS; /** * If there are multiple snippet with the same trigger, * keep only those with highest priority * * @see https://github.com/SirVer/ultisnips/blob/master/doc/UltiSnips.txt#L569 */ export declare function stripSnippetsByPriority(defs: SnippetDefinition[]): SnippetDefinition[];