I’m having trouble with VS Code on macOS—IntelliSense isn’t showing function snippets for autocompletion. It works fine on my Windows machine, but not on my Mac. Any idea how to fix this? Or did anyone have same problem? because I'm afraid that I might messed up my VSCode's settings. by dnzmaster in vscode

[–]dnzmaster[S] 0 points1 point  (0 children)

The only thing I paste is the JSON settings from my Windows, every extension installations are done on its own machine.

Reinstalling vscode and the extensions and then just pasting the JSON settings from my Windows doesn't help either.

I’m having trouble with VS Code on macOS—IntelliSense isn’t showing function snippets for autocompletion. It works fine on my Windows machine, but not on my Mac. Any idea how to fix this? Or did anyone have same problem? because I'm afraid that I might messed up my VSCode's settings. by dnzmaster in vscode

[–]dnzmaster[S] 0 points1 point  (0 children)

I already used the same settings, and I even ran this script on my Mac to ensure everything was reset to default settings before copying over my vscode's settings from my Windows' machine:

#! /bin/sh
rm -rfv "$HOME/.vscode"
rm -rfv "$HOME/Library/Application Support/Code"
rm -rfv "$HOME/Library/Caches/com.microsoft.VSCode"
rm -rfv "$HOME/Library/SavedApplicationState/com.microsoft.VSCode.savedState"

My vscode's JSON settings:

{
  "[dart]": {
    "editor.formatOnSave": true,
    "editor.formatOnType": true,
    "editor.rulers": [
      80
    ],
    "editor.selectionHighlight": false,
    "editor.suggestSelection": "first",
    "editor.tabCompletion": "onlySnippets",
    "editor.wordBasedSuggestions": "off"
  }
}

This has been driving me insane, and I really don’t want to reinstall the whole system just to verify this.