Stop Using Mouse/Touchpad For Become A Pro Developer
Yes, It is true. When we only work with the keyboard then we can maintain the speed and consistency. Every tool has the shortcuts for an action. So let’s take a look.

Hello all, I have been for more than five years in IT and during this time I learned many new things. one important thing that I have noticed is that if you don’t take the help of a mouse/touchpad then you look different from the rest of the developers. let’s have a look at the most common developer tools for common use cases with a keyboard.
- Eclipse
CTRL + I
: Corrects indentation.CTRL + D
: Delete row. ALT + Left/Right Arrow
: Move to the last location you edited.CTRL + SHIFT + F
: Formats code. CTRL + SHIFT + L
: Shows you a list of your currently defined shortcut keys.CTRL+1
: It helps for remove the error. (quick fix)CTRL+E
: Shows you a list of all open editors.CTRL+F8
: Move between perspectives. The same as Ctrl+F7.CTRL + F11
: Runs the application.CTL + N
: Open a new type wizard. CTRL+SHIFT+O
: Organize imports.ALT + Up/Down Arrow
: Move the row (or the entire selection) up or down.
- Visual Studio
Ctrl+Shift+N
: New window/instanceCtrl+Shift+W
: Close window/instanceCtrl+,
: User SettingsCtrl+K Ctrl+S
: Keyboard ShortcutsCtrl+F
: FindCtrl+H
: ReplaceF3 / Shift+F3
: Find next/previousAlt+Enter
: Select all occurences of Find matchCtrl+N
: New FileCtrl+O
: Open File…Ctrl+S
: SaveCtrl+Shift+S
: Save As…Ctrl+F4
: CloseCtrl+K Ctrl+W
: Close AllCtrl+Shift+T
: Reopen closed editor
- Notepad
Ctrl +O
: Open a previously saved noteCtrl + S
: Save/Save AsCtrl + N
: Open a New Blank PageCtrl + P
: Open PrintCtrl + Z
: UndoCtrl + X
: CutCtrl + V
: PasteCtrl + C
: CopyCtrl + F
: Open FindCtrl + H
: Open ReplaceCtrl + A
: Select AllF5 or Fn + F5
: Insert the Date and Time
- XCode
Command + 1
: Project Navigator.Command + O
: Show/Hide Navigator Panel.Command + Option + 0
: Show/Hide Utilities PanelOption + Left-click
: Open file in Assistant EditorCommand + Shift + F
: Find SearchControl + 6
: File JumpCommand + Shift + O
: Open QuicklyControl + Command + Up Arrow
: Switch between .h and .m filesCommand + R
: Run the appCommand + Shift + K
: Clean the projectCommand + B
: Build the appCommand + Shift + 0
(Zero): Documentation and referenceOption + Left-click
on class or method name: Quick help
That’s it. I hope it will help you improve your knowledge and programming speed. If you like my article then give a second and claps for me.
Thank you for reading.