Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Refactor keyboard shortcuts in MonoDevelop

Tags:

monodevelop

Are there keyboard bindings to the refactoring commands in MonoDevelop?

like image 508
James Hollingworth Avatar asked Jun 23 '12 18:06

James Hollingworth


1 Answers

A direct answer: Yes, there are.

A bit more useful answer: depending on what you're looking for, quick examples:

  • Alt+Return is quick fix (given you've got source analysis turned on)
  • Alt+Insert is code generation (properties, overrides, etc.)
  • F2 is rename

And, in case you're not aware, all the refactorings for the symbol you got under your cursor are available in the right-click context menu (available by pressing the relevant keyboard key, so it also kind of counts as a keyboard binding ;) )

Apart from that, you can look up and/or change all (or at least many, I'm not exactly sure) the bindings in Options > Preferences > Key Bindings.

Does the above answer your question?

like image 75
triazotan Avatar answered Oct 26 '22 03:10

triazotan