tunnckoCore/modern-javascript-snippets

[VSCode] Snippets doesn't show at the top

cAstraea opened this issue · 1 comments

Hello, think I must disable something in VSCode ? But not sure what. Sometimes the shortcuts come first but sometimes visual code comes up with his own.

screen shot 2017-06-08 at 10 16 27

Hi! Yea, i faced that problem too. I touched something in settings to show snippets first.

That's my settings

{
    "workbench.colorTheme": "Sublime Material Theme - Dark",
    "files.autoSave": "onFocusChange",
    "files.insertFinalNewline": true,
    "files.trimTrailingWhitespace": true,
    "editor.tabSize": 2,
    "editor.formatOnSave": true,
    "editor.tabCompletion": true,
    "editor.quickSuggestions": true,
    "editor.acceptSuggestionOnEnter": true,
    "editor.wordBasedSuggestions": true,
    "editor.snippetSuggestions": "top",
    "editor.minimap.enabled": true,
    "editor.folding": false,
    "editor.rulers": [
        80,
        100
    ],
    "eslint.workingDirectories": [
        "./src"
    ],
    "eslint.autoFixOnSave": true,
    "docthis.automaticForBlockComments": false,
    "docthis.inferTypesFromNames": true,
    "prettier.singleQuote": true,
    "prettier.semi": false,
    "extensions.autoUpdate": true,
    "window.menuBarVisibility": "toggle",
    "workbench.welcome.enabled": false,
    "workbench.iconTheme": "material-icon-theme",
    "workbench.statusBar.visible": true,
    "explorer.openEditors.visible": 0,
    "git.path": "/usr/bin/git",
    "[markdown]": {
        "files.trimTrailingWhitespace": false,
        "files.insertFinalNewline": false
    }
}

the important part is "editor.snippetSuggestions": "top"

Hope this help. I'll add it as note in the readme soon :)