Skip to main content

All Questions

Tagged with
11 votes
5 answers
5k views

Programming productivity: How to hide cursor while typing

Whenever I click somewhere to type some code, by definition that's exactly where my mouse cursor is, which is obscuring what I'm trying to type. Often, if I forget to move the cursor away before ...
1 vote
1 answer
888 views

Why is the thickness of the Visual Studio cursor/caret variable?

When I move to different places on a line in Visual Studio, I notice that the thickness of the cursor changes. I am not referring to going into Insert mode, or changing any settings of either the ...
0 votes
1 answer
673 views

c# Insert Fixed Text to Cursor Position

I would Like to add to my Visual studio a shortcut or addin to add fixed text to the position where the cursor is on. For example : this is my current cs File: public void foo(){ int x = 4 ; **cursor ...
4 votes
2 answers
623 views

Is there any way to invert the caret?

When programming in Visual Studio, the caret (i.e. the vertical line that shows where text will be inserted) is either a vertical line (when in insert mode) or a block (when in overwrite mode). Is ...