We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 73cc9cb commit bcdc8caCopy full SHA for bcdc8ca
1 file changed
extensions/css-language-features/client/src/cssMain.ts
@@ -61,10 +61,6 @@ export function activate(context: ExtensionContext) {
61
type: (item.documentation as string)
62
};
63
}
64
- const range = item.range;
65
- if (range instanceof Range && range.end.isAfter(position) && range.start.isBeforeOrEqual(position)) {
66
- item.range = { inserting: new Range(range.start, position), replacing: range };
67
- }
68
69
// testing the new completion
70
function updateProposals(r: CompletionItem[] | CompletionList | null | undefined): CompletionItem[] | CompletionList | null | undefined {
0 commit comments