emmet working in VScode without abbreviation

solution 1

try to remove the live server extension

solution 2

remove log files

solution 3

remove vs and redownload it.

solution 4

change your settings file to

{
    "explorer.confirmDelete": false,
    "files.autoSaveDelay": 100,
    "editor.fontSize": 18,
    "liveServer.settings.donotVerifyTags": true,
    "liveServer.settings.donotShowInfoMsg": true,
    "editor.fontLigatures": true,
    "[html]": {
        "editor.defaultFormatter": "esbenp.prettier-vscode"
    },
    "[javascript]": {
        "editor.defaultFormatter": "esbenp.prettier-vscode"
    },
    "php.validate.executablePath": "C:\\wamp64\\bin\\php\\php7.4.0\\php.exe",
    "php.executablePath": "C:\\wamp64\\bin\\php\\php7.4.0\\php.exe",
    "[css]": {
        "editor.defaultFormatter": "esbenp.prettier-vscode"
    },
    "explorer.confirmDragAndDrop": false,
    "[json]": {
        "editor.defaultFormatter": "esbenp.prettier-vscode"
    },
    "editor.cursorWidth": 2,
    "editor.formatOnPaste": true,
    "editor.minimap.maxColumn": 80,
    "editor.acceptSuggestionOnEnter": "smart",
    "editor.fontFamily": "Fira Code",
    "tabnine.experimentalAutoImports": true,
    "workbench.iconTheme": "material-icon-theme",
    "workbench.editor.untitled.hint": "hidden",
    "terminal.integrated.tabs.enabled": true,
    "npm.runInTerminal": false,
    "terminal.integrated.cursorStyle": "line",
    "terminal.integrated.cursorWidth": 3,
    "workbench.colorTheme": "Community Material Theme Ocean High Contrast",
    "[javascriptreact]": {
        "editor.defaultFormatter": "esbenp.prettier-vscode"
    },
    "editor.suggest.snippetsPreventQuickSuggestions": false,
    "javascript.updateImportsOnFileMove.enabled": "always",
    "security.workspace.trust.untrustedFiles": "open",
    "git.enableSmartCommit": true,
    "git.confirmSync": false,
    "git.autofetch": true,
    "projectManager.git.baseFolders": [
        "business-manager"
    ],
    "diffEditor.ignoreTrimWhitespace": false,
    "liveSassCompile.settings.formats": [
        {
            "format": "expanded",
            "extensionName": ".css",
            "savePath": "/css"
        }
    ],
    "emmet.includeLanguages": {
        "javascriptreact": "html"
    },
    "emmet.triggerExpansionOnTab": true,
    "files.trimTrailingWhitespace": true,
    "files.insertFinalNewline": true,
    "files.trimFinalNewlines": true,
    "editor.formatOnSave": false,
}