Skip to content

Instantly share code, notes, and snippets.

@misebox
Last active March 16, 2022 18:23
Show Gist options
  • Select an option

  • Save misebox/c0a2b60dbdae28da6755e5bd0b390ab9 to your computer and use it in GitHub Desktop.

Select an option

Save misebox/c0a2b60dbdae28da6755e5bd0b390ab9 to your computer and use it in GitHub Desktop.

Revisions

  1. misebox revised this gist May 27, 2020. 1 changed file with 1 addition and 0 deletions.
    1 change: 1 addition & 0 deletions settings.json
    Original file line number Diff line number Diff line change
    @@ -1,6 +1,7 @@
    {
    // Instead of turning this off, use the key binding [CTRL+k Enter] to change an editor in preview mode into edit mode.
    "workbench.editor.enablePreview": true,

    // Useful suggestion
    "editor.quickSuggestions": true,
    "editor.suggest.statusBar.visible": true,
  2. misebox created this gist May 27, 2020.
    16 changes: 16 additions & 0 deletions settings.json
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,16 @@
    {
    // Instead of turning this off, use the key binding [CTRL+k Enter] to change an editor in preview mode into edit mode.
    "workbench.editor.enablePreview": true,
    // Useful suggestion
    "editor.quickSuggestions": true,
    "editor.suggest.statusBar.visible": true,
    "editor.suggest.localityBonus": true,
    "editor.suggest.showKeywords": true,

    // Prevent annoying features
    "editor.wordBasedSuggestions": false,
    "editor.suggest.showSnippets": false,
    "editor.quickSuggestionsDelay": 1000, // ms
    "editor.suggestOnTriggerCharacters": false,
    "editor.acceptSuggestionOnEnter": "off",
    }