Statement completion still active in comments

Issue #7 resolved
Former user created an issue

The statement completion / intellisense tries to match words typed inside of commented code.

This applies to both // and { } comments.

P.S. Thank you for working on this extension! It is fantastic.

Comments (4)

  1. Christopher Wosinski repo owner

    This issue has been solved with Visual Studio Code 1.11.0. You can now define whether you want to see quick suggestions in comments, strings and other text (e.g. source code) with this setting:

    "editor.quickSuggestions": {
        "comments": false, // <- no 24x7 IntelliSense in comments
        "strings": false,
        "other": true
    }
    
  2. Log in to comment