VSCode merge conflict options not displaying
If you still struggle with this issue try to turn off Git: Merge Editor flag.
If you still struggle with this issue try to turn off Git: Merge Editor flag.
I also struggled with this, and finally submitted an issue to the vscode repo. Please try this: On the menu bar: File>Preferences>User Settings Add the following to your settings.json: “editor.hover.enabled”: false Save your settings.json and your issue should be fixed. Happy coding!
I had to delete lines starting from line number 17158 through 1644546 which was nearly impossible to do if I used scrolling. So I followed 4 simple steps: Go the line where you want to start deleting (17158 in my case). Using keyboard, press Ctrl+G which opens a box to enter the line number to … Read more
This feature has been implemented by a pull request some time ago. To use it you need to bind the editor.action.moveCarretLeftAction and editor.action.moveCarretRightAction actions in the keyboard shortcuts editor.
After testing a few of the extensions I’ve decided to use Code Spell Checker. It has a super useful shortcut CTRL+. that shows suggestions for spelling.
Right click on an existing breakpoint and select “Edit Breakpoint…”, or right click on the breakpoint margin and select “Add Conditional Breakpoint…”. See the VS Code Debugging docs for details.
You should be able to do this by configuring the option editor.emptySelectionClipboard to false.
You can search keyword highlight in setting, and you change Editor:Match Bracket to never, like this:
There isn’t, not natively. But there is an extension called File Templates for VSCode that allows you to create your own file templates and generate from them. But I think you’d benefit from making an extension to do just that and maybe even more. In the meantime, you can use a snippet to generate this … Read more
It is now possible using the debug.openDebug User Setting. You can set it to either: neverOpen openOnDebugBreak