I use VSCode for editing Unity scripts. I have just updated to VSCode 1.65.2. Before I updated, I was able to type out a for-loop without any problems. For instance: for(int i=0; i<10; i++) { }, however, now whenever I type the "i<" keys, VSCode auto-adds "async" to my method signature and "await" to the cursor position where I was typing. This is very annoying as I use "i" (i<) for most of my for-loops. Is there a way to disable this feature in VSCode? In addition, I am not sure what the feature is called, so I have not been able to find anything about it myself. I have searched for "Emmet", "Abbreviations", "Suggestions", "Snippets". None of these categories are producing results for me. Even searching for "i<" as a short-code has not produced any results. To be clear, I would like to disable whatever is causing "i<" from converting my method signatures and adding code. If anyone can help with this, it would be much appreciated. Thanks.
Add a comment |
1 Answer 1
OK, finally found something that worked. In File > Preferences > Settings I enabled Omnisharp: Enable Async Completion according to this question. This worked for me. Thank you.
Sign up to request clarification or add additional context in comments.
Comments
- The Overflow Blog
-
- Featured on Meta
-
-
Related
Hot Network Questions
- How is this ratio formula for two conducting balls true?
- What do I need 20 shock arrows for?
- Can I backup Legends Arceus save file to use, in case I want to format my Switch?
- How do you learn without AI?
- What should I do if my foreshadowing was too obvious and readers picked up on it immediately?
- Deeper understanding of Ezekiel 11:3's "...The time is not near to build houses. This city is the pot and we are the flesh.."
- Fixing Leak in Icemaker water supply
- How to check for IPv6 colisions in Linux
- Why did Father Paul wear the wrong vestments in Midnight Mass?
- On sums of a prime and a central binomial coefficient
- Constructing a URL query using URLDownload or URLRead
- Why does Dr. House use Vicodin?
- What game languages are most valuable for a highly multilingual character in Pathfinder Society play?
- Chern class of tangent bundle of hypersurface of CP^n viewed as complex of coherent sheaves
- Diagnosing non-operational wired doorbell
- Advice on regression approach
- Does anyone use measures that take values in real numbers and cardinal numbers?
- A term for the incapability of letting go of an idea until one has fully explored it
- Sort this puzzle out
- What are CTAN package modifications that don't affect the package files and why do they happen?
- you almost got us killed vs you almost killed us
- How precise is a DVM input impedance for high-Z circuit measurements?
- Can concepts in Devarim be used equally to interpret concepts in the other books?
- How to Reorder Mesh Island Index by Z-Position (Lowest Z = Index 0) in Geometry Nodes?
lang-cs