Selecting Intellisense suggestion insertion question #11783
-
First of all, my apologies if this isn't an extension specific question. If I have a line like this.. Entry& entry = someEntry; If I want to scope Entry, I'll put the cursor to the left of Entry and start typing. Intellisense will pop up with suggestions. If I select the class name I'm interested in, Entry will be replaced with my selection. Is there a setting to tell the intellisense to insert the selection rather than replace what is ahead of it? Hopefully, this question made sense. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
We enabled this behavior in 1.19 which is still in pre-release. See #10613. If you install the pre-release version of the extension, you can add |
Beta Was this translation helpful? Give feedback.
We enabled this behavior in 1.19 which is still in pre-release. See #10613.
If you install the pre-release version of the extension, you can add
"[cpp]": { "editor.suggest.insertMode": "insert" }
to your settings to enable insert mode.