本文整理汇总了TypeScript中cspell.Text类的典型用法代码示例。如果您正苦于以下问题:TypeScript Text类的具体用法?TypeScript Text怎么用?TypeScript Text使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了Text类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: genMultiWordSugs
function genMultiWordSugs(words: string[]): string[] {
const snakeCase = words.join('_').toLowerCase();
const camelCase = Text.snakeToCamel(snakeCase);
return [
snakeCase,
Text.ucFirst(camelCase),
Text.lcFirst(camelCase)
];
}
示例2: replaceText
.forEach(sugWord => {
commands.push(LangServer.Command.create(sugWord, 'cSpell.editText',
uri,
textDocument.version,
[ replaceText(diag.range, sugWord) ]
));
const words = sugWord.replace(/[ \-_.]/, '_').split('_');
if (words.length > 1) {
if (Text.isUpperCase(word)) {
const sug = words.join('_').toUpperCase();
commands.push(LangServer.Command.create(sug, 'cSpell.editText',
uri,
textDocument.version,
[ replaceText(diag.range, sug) ]
));
} else {
genMultiWordSugs(words).forEach(sugWord => {
commands.push(LangServer.Command.create(sugWord, 'cSpell.editText',
uri,
textDocument.version,
[ replaceText(diag.range, sugWord) ]
));
});
}
}
});
示例3: textToWords
function textToWords(text: string): string[] {
const setOfWords = new Set(
Text.extractWordsFromCode(text)
.map(t => t.text)
.map(t => t.toLowerCase())
);
return [...setOfWords];
}
示例4:
.map(sug => Text.matchCase(word, sug))