cometbill
cometbill

Reputation: 1619

Navigating code using Ctrl-F, and CodeRush Markers

When I use the 'Jump To ...' context menu CodeRush drops a marker before jumping, so that I can navigate back.

When I CTRL-F in Visual Studio it doesn't.

How can I configure CodeRush to add this handy little navigation aide.

Upvotes: 2

Views: 221

Answers (1)

Rory Becker
Rory Becker

Reputation: 15701

Ok simple enough

  • Create a new Shortcut using instructions found here
  • Specify Ctrl+F as the Key
  • Specify MarkerDrop as the Command
  • Then check the "after executing this command, pass shortcut to IDE for default handling" checkbox.

Ctrl+F should now drop a marker whenever it launches the Find Dialog.

More detail and bonus Marker tips are available here

Upvotes: 7

Related Questions