Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Intellisense activating inside of strings #154

Comments

@v-codeel
Copy link

v-codeel commented Apr 6, 2016

(Migrated from microsoft/vscode#5051)

  • VSCode Version: 0.10.11
  • OS Version: Windows 10 (also repros on OSX)

(Code examples will be in C#, but also repro's with other languages)

Scenario 1 Repro:

  1. var x = "%%
  2. With the cursor at %%, Type C
  3. Code Completion suggestions are shown.
    image

Scenario 2 Repro:

  1. Console.WriteLine("%%)
  2. Intellisense will be showing. Click elsewhere in the file to dismiss it.
  3. Type (
  4. Intellisense is shown again.
    image
    (This would be normal if it hadn't been previously dismissed.)
@DustinCampbell
Copy link
Member

Note that the completion that appears inside strings is text token based and includes snippets. These are included by default in VS Code. However, symbol completion is not appearing inside strings.

The signature help issue should already be fixed.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment