-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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 interrupting typing in strings #110
Comments
From @abrakidabra on April 28, 2017 6:28 After doing a little more testing today I've noticed this is happening for all strings. Any time I put a '.' character in a string I get an intellisense dialog. |
From @abrakidabra on April 28, 2017 7:28 As an extra bit of info this only happens when coding in Python. The other languages do not have this behaviour. |
Other languages too have this issue. Will check if there's a solution. |
"editor.quickSuggestions" setting seems to be not working with Python. My current workaround is temporarily setting "editor.suggestOnTriggerCharacters" to false. |
May need to write simple tokenizer. Unfortunately, https://github.com/Microsoft/vscode-textmate requires |
* Basic tokenizer * Fixed property names * Tests, round I * Tests, round II * tokenizer test * Remove temorary change * Fix merge issue * Merge conflict * Merge conflict * Completion test * Fix last line * Fix javascript math * Make test await for results * Add license headers * Rename definitions to types * License headers
From @abrakidabra on April 28, 2017 0:1
Environment data
VS Code version: 1.11.2
Python Extension version: 0.6.3
Python Version: 2.7.13
OS and version: MacOS Sierra 10.12.4
Actual behavior
When putting a full stop at the end of a line inside triple quotes the intellisense dialog pops up and suggests a bunch of options. I then hit the enter key to go to the next line but instead of going to the next line it adds the first suggestion in the intellisense dialog to the string.
Expected behavior
No intellisense inside triple quoted strings. It's very clunky to have to hit the escape key at the end of every line with a full stop on it.
Steps to reproduce:
Settings
Workspace Settings:
User Settings:
Copied from original issue: DonJayamanne/pythonVSCode#921
The text was updated successfully, but these errors were encountered: