vote up 1 vote down star

Duplicates:

How can i stop using a mouse while programming in my ide

How do you get by without a Mouse?

I'm an intern right now at a software company and I had my boss in my cube yesterday as we went over some buggy code (not mine though =P) While we were walking through the code trying to find the bug, he made the comment that I was using the mouse too much and that it's a bad habit I should try to break.

I own two computers, a PC (with both Windows and Ubuntu) and a Macbook. I use Visual Studio for most of my programming (work and home) but when I'm on my *nix systems I tend to just use Vim (although I generally only write really short things when in Vim).

What are ways I can break the habit of using the mouse so much? What are good keyboard shortcuts I should know?

flag
he probably uses his laptop too much in my opinion – TStamper May 7 at 19:49
1  
This question has been asked at least 4 times in the last week... – Peter D May 7 at 19:53
1  
@Peter D provide the links and we close it as a duplicate :-) – lothar May 7 at 19:55
@lothar - see my answer below for link. – deadbeef May 7 at 19:58
I thought I did. I entered too man tags though, so when it asked me to remove some of them it must have unticked the box :-/ – Alex May 7 at 19:59
show 3 more comments

closed as exact duplicate by lothar, 17 of 26, TStamper, dmckee, rmeador May 7 at 20:15

10 Answers

vote up 2 vote down

Just pay attention to when you're using the mouse and learn the appropriate shortcuts.

For me it was learning to switch tabs and windows, and learning to highlight text/code. Example: in OS X you can highlight text in different ways using your arrow keys in combination with the shift, command, and option keys.

link|flag
vote up 10 vote down

Unplug your mouse.

link|flag
vote up 1 vote down

I suggest you to check this similar question for some advices.

link|flag
vote up 0 vote down

Disconnect the mouse for a while thus forcing yourself to not use it.

link|flag
vote up 0 vote down

Quite a stupid comment I would say. Each has his preferences. I prefer mouse to keyboard as well.

Here you will find the Visual Studio shortcuts:

Visual C# 2008 Keybinding Reference Poster

link|flag
vote up 0 vote down

If Mouse makes you more productive, use it. What is the macho need for just using Keyboard?

link|flag
Agreed, people work differently, but different doesn't mean wrong. I really don't understand machismo in things like IDEs or methods, there is no "right" way. That said, watching someone take their hands off the keyboard to press the PLAY icon in Visual Studio drives me nuts. :) If the poster is simply unaware of the keyboard shortcuts, they are defiantly worth their weight in gold. I don't know how much time ALT-ENTER or CTRL+SHIFT+ESC have saved me over my life. Also standard line navigation ( next char, next word, end of line, end of file, etc... ) are must knows. – Serapth May 7 at 20:02
vote up 0 vote down

Re: "What are good keyboard shortcuts I should know?"

"Using the mouse too much" would only really matter I suppose if it slows you down.

On a daily basis in Windows & Visual studio I usually end up using:

Windows "Standard" (commond for most windows applications)

  • Ctrl+x - cut
  • Ctrl+c - copy
  • Ctrl+v - paste
  • Ctrl+z - undo
  • Ctrl+y - redo
  • Ctrl+f - find
  • F1 - help

Visual Studio

  • F5 - start debug
  • Ctrl+F5 - start without debug
  • F10 - Step over (while debugging)
  • F11 - Step into (while debugging)
  • Ctrl+Alt+Break - Break All (while debugging)
link|flag
vote up 1 vote down

What do you use the mouse for the most? I found that I was reaching over to the mouse a lot just to scroll around and look at the code, and also to scroll to a particular line number. I forced myself to use the keyboard for those tasks (much faster because I can just jump to a particular line from the keyboard). Once you figure out what it is, force yourself to use the keyboard instead of the mouse. When you get used to it, move on to your next-most-common use of the mouse.

link|flag
Use intelligent search: Ctrl+I and type what you are looking for. Makes the biggest difference. – Jared Updike May 7 at 20:02
Ctrl+I is "Correct Indentation" in Eclipse. I was using Ctrl+L to "go to specific line" (i.e. someone asks me to "take a look at line 83 in foo.java"). As for scrolling around, I'm not looking for something in particular, just scrolling as I read the code. Still nice to keep my hands on the keyboard. – Adam Jaskiewicz May 7 at 20:33
vote up 0 vote down

See related questions: How can I stop using a mouse while programming in my IDE? and How do you get by without a Mouse?

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.