Я хочу добавить числа к расширению sass-indentation, и я как-то разобрался, как это сделать, было бы неплохо, если бы я мог установить местоположение курсора при срабатывании предложения, так же, как вы можете установить местоположение курсора, когдаВы делаете фрагменты с $1
, это возможно?
import { CompletionItem, CompletionItemKind } from 'vscode';
const sassSchemaTest = [
{
name: '%',
body: '$1%', // I want the cursor location where the '$' sign is
description: 'test'
}
];
export default sassSchemaTest.map(item => {
const completionItem = new CompletionItem(item.name);
completionItem.insertText = item.body;
completionItem.detail = item.description;
completionItem.kind = CompletionItemKind.Property;
return completionItem;
});