Archive

Posts Tagged ‘Markers’

CodeRush and Visual Studio bookmarks

May 30th, 2012 Comments off

When you work on large projects you may need to revisit several areas of your code on a regular basis. CodeRush allows you to store such important locations in the code and move back to them in the future by using bookmarks. Visual Studio provides a similar bookmarks feature, which allows you to mark places in your code that you would want to come back to. Let’s see what differences between the CodeRush and Visual Studio bookmarks are.

Read more…

DXCore Services – Markers

July 4th, 2011 Comments off

The Markers DXCore service provides methods for dropping, swapping, collecting and managing navigation markers and bookmarks in source code.

Read more…

Shared Source – Drop Marker Before Jump

September 22nd, 2010 Comments off

The “Drop Marker Before Jump” feature is intended to help you easily navigate back at the source location after the “Go to Definition” Visual Studio command is performed. It drops a marker at the text caret location, before you jump to the definition. After you finish navigation to the definitions, pressing the Esc key will move you back to each location you have visited.

Read more…

Navigation – Markers

September 3rd, 2010 Comments off

Markers are navigation placeholders that remember important locations inside your source code you’ll need to move to in the future. In most cases, they look like little triangular glyphs in the IDE’s code editor:

CodeRush Navigation markers preview

Markers are stack-based. When you collect a marker, it pops off the stack. You can jump back at any time to the top marker on the stack by pressing Esc key (or Alt+End).

Read more…

How to add support for dropping markers into CodeRush Xpress

September 3rd, 2010 Comments off

CodeRush Pro has great Markers support, but, unfortunately, CodeRush Xpress lacks it – you can’t drop them manually using the Alt+Home shortcut. Here’s an example of how you can work around this limitation.

1. Create a new DXCore plug-in via the File -> New -> Project… -> Visual C# -> DXCore -> Standard Plug-in item. Enter a name of the plug-in if necessary and click OK:

Read more…

Getting up to speed with IDE tools

August 16th, 2010 Comments off

How to learn the product tips:

  • Dock the CodeRush Training window (DevExpress | Tool Windows | CodeRush) next to the editor. The CodeRush Training tool window shows you features that can be used while the cursor is at the current position, and is designed to help you learn much of CodeRush and Refactor! without diving into the User Guide.
  • Read the User Guide. From the DevExpress menu select “User Guide”. Use the tree list to drill into topics of interest.
  • Access training videos through the DevExpress menu or via this link.
  • Watch online videos at DevExpress TV Channel.
  • Subscribe to this blog.

Read more…

CodeRush Pro navigation features

August 2nd, 2010 Comments off

CodeRush Pro includes numerous powerful navigation features, such as:

Markers

Markers are navigation waypoints that remember important locations you’ll need to move to in the future. Collect Marker moves the caret to the topmost marker within the stack, and removes this marker (ESC key). Use the Alt+Home key combination to manually drop markers.

Bookmarks

CodeRush Pro enables you to mark important code locations you are going to move to in the future. This feature is provided by Bookmarks. To toggle a bookmark on a current cursor position, press Ctrl+Plus Sign. You can also toggle a bookmark with a certain identifier, if it is less then or equal to 9. To do this, press Ctrl+Alt+Number. After you toggled a bookmark, it exists until you delete it. That is, it will not be deleted if you close and reopen a solution containing the bookmark. The number of bookmarks contained in a solution is unlimited.

Read more…