vote up 6 vote down star
3

I was using CodeRush quite while ago and now I'm planning to use it again. I've install the trial but I forgot all cool features except Alt + Home (drop a marker). And when you don't know some cool tricks it's really like burning money (since it's not cheap for personal use)

What do you like about it? What are your best features?

My best feature is marker: Alt + Home (and use escape to go back)

P.S Dear Devxpress, if you think I helped you by asking this question I can accept some donations, a free license of CodeRush would be nice!

Currently What I like most

  • ps/pi etc. shortcut to create properties
  • cc to create constructors
  • pressing tab to navigate between the references
  • F12 to find references in new cool window
  • Ctrl + Shift + . for recent files
  • Ctrl + Shift + Q for jumping to any function / class
  • fe/fi for "for loops"
flag

7 Answers

vote up 4 vote down check

I recently installed the Xpress version and went on a similar hunt. This cheat-sheet is what I found so far. The XPress version is pretty gimped btw so I'm trying to get funding for a license.

link|flag
keep posting if you got other good resources or tips, just for the records there are bunch of videos in here as well : devexpress.com/Products/Visual_Studio_Add-in/… – dr. evil Dec 8 '08 at 22:05
vote up 4 vote down

I use these alot.

/ will comment or uncomment highlighted blocks of code.

b will wrap a highlighted selection in braces.

ctl-3 will wrap a selection into a region

tc will generate a try/catch block

mbs will write a MessageBox.Show(""); and drop the cursor in the quotes.

cws will do the same but with Console.Writeline

m will create a method block (ms would do a method block that returns type string)

. will make a comment block

link|flag
Didn't know commenting stuff, very cool. – dr. evil Jan 7 '09 at 16:18
If you go to DevExpress/Options/Editor/Templates you can see the whole list. I make myself a cheat sheet of like 5 to learn every week or two. – Echostorm Jan 7 '09 at 16:55
vote up 3 vote down

rt / rf = For Return True and False

link|flag
vote up 3 vote down

F2 - Rename

Strictly this is a RefactorPro shortcut as the Rename functionality is for RefactorPro. (However since RefactorPro is included in the Price of Coderush that should not be an issue)

It is also, I think, Disabled by default.

You should be able to use the DevExpress\options...IDE\Shortcuts screen to search for F2 and re-enable it.

Very natural to rename Vars and Methods using F2 when you're already used to F2 functionality for Files and Folders in Explorer.

link|flag
that's sound good only problem is that my F2 is binded to "go to definition" :) But sounds like a good idea to give rename a shortcut. – dr. evil Mar 10 at 17:23
vote up 3 vote down

"NumPad+Plus" widens the scope of your selection one level.

Try it. It's sublime :)

link|flag
vote up 1 vote down

This is an old post on the DevExpress Coderush Forum:

In it is a setting suggestion by Mark Miller to enhance the default "Embed in Parenthesis" feature of CodeRush.

Once in place ... highlight some text and hit '('. your selection will be wrapped in Parenthesis and more importantly your caret will be on the left of the selection. (Similar applies to the Right Parenthesis)

Ideal for VB.Net users to use alongside CInt, CStr etc

link|flag
vote up 1 vote down

Inside VS.NET

Press "Ctrl + Shift + Alt + O" will list all the shortcuts.

link|flag

Your Answer

Get an OpenID
or

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