Ctrl
+P
ввести комманду ext install replacerules
"replacerules.rules": {
"Remove html tags": { // Название (индекс)
"find": "\\s*<(/?[^>]+)>", // Найти
"replace": "", // Заменить на
"languages": [
"html" // Применять к файлам (не обязательно)
]
}
}
[
{
"key": "shift+alt+e", // Горячие клавиши
"command": "replacerules.runRule",
"when": "editorTextFocus && !editorReadonly",
"args": {
"ruleName": "Remove html tags" // Название (индекс)
}
}
]
Ctrl
+Alt
+V
или через заданные горячие клавиши.