Problems with editing VS Code - visual-studio-code

I can't edit the code after pressing ctrl+c or after I minimized the window and opened the code. this cursor appears highlighted in the photo and nothing happens so that it doesn't click. How to solve the problem?
enter image description here

You have the vim plugin installed.
Either press i to go into edit mode, or disable the extension in the Extensions tab.

Related

How to add a shortcut for "Launch the selected target in terminal window" button?

I use Visual Studio Code and the CMake extension (twxs.cmake). The extension integrates CMake to vscode. There is a button which allows us to run a target in terminal window. It looks like a play button. .
My question is, how can I add a keyboard shortcut for this button? I cannot find the action name so I cannot link it. I wish to use keyboard shortcut instead of clicking that button every time.
I tried googling the action name of this button so I could bind it with any keyboard shortcut, but I couldn't find anything.
Any help will be appreciated.
Thank you in advance!
Shift+F5 appears to do the same thing as clicking that button.
I found the following here:
Running Targets Without a Debugger
Sometimes one will want to just run a target and see its output. This
can be done with the CMake: Execute the current target without a
debugger command, or the associated keybinding (the default is
Shift+F5).
The output of the target will be shown in an integrated terminal.

VSCode - Disable selection on auto-complete suggestion

Whenever I use autocomplete, VSCode automatically puts whatever I type in a selection, it didn't happen before and it only started happening recently.
Here's what happens:
I type something like this and suggestion comes up:
Then I press enter to auto complete:
All of this is fine, but when I start typing in the quotes:
VSCode automatically puts my text in a selection. This causes multiple problems. Suggestions get disabled in selection and I have to press Esc everytime I want the selection disabled.
Is there any way to fix this?
The question was already answered by #Anton Solomin and #devanil. The issue is VS code auto-suggestion is not working when text is highlighted, because some of your code snippet is preventing quick suggestion by VS code.
So just tell VS code that don't disable quick suggestion if some snippets askes you to do it.
Go to VScode settings page, in settings search bar type editor.suggest.snippetsPreventQuickSuggestions
Uncheck Controls whether an active snippet prevents quick suggestion

Removing description window (Flutter) in VSCODE

While using Flutter in VSCODE, the description window continues to hide what I have coded. Because of this, I have no choice but to click ESC continuously. How can I remove this from settings? Help..

VS code: Pressing tab key for auto-completion would exit terminal

In my VS code terminal, pressing tab key for auto-completion would exit the terminal and select other components of VS code. How can I stop it? I was testing different shortcuts. I must have accidentally done something wrong.
Find the answer here. https://code.visualstudio.com/docs/editor/accessibility#_tab-trapping
Click Tab move focus in the center of the bottom bar.

visual studio code ctrl + tab not working as it was used to

I used to have an old VSCode version, where i used ctrl+tab to navigate through recently opened tabs.
when i pressed the combination a dropdown will appear where i could see the recently opened tabs. Then, if i pressed ctrl+tab again, it would cycle through those tabs.
Recently, I updated VSCode to a newer version. Now, if i press ctrl+tab the dropdown appears like it used to. But, when i press it again, it doesn't cycle through tabs anymore. Instead, it will open the last tab that I've accessed.
I've tried :
uninstalling
reinstalling
removing the setting an reinstalling the older version
But still, that ctrl+tab functionality seems gone. can you help me restore it?
Check your keyboard shortcuts. Find the command:
workbench.action.quickOpenNavigateNextInEditorPicker
By default it is set to Ctrl-Tab, if yours is not, set it that keybinding by clicking on the pencil icon to the left of the command on hover and enter Ctrl-Tab into the dialog box.
That command should also be using the when clauses: inEditorsPicker && inQuickOpen