I want to disable the "locator carets" put down by CodeRush when i execute one of it's commands, how can i do it?

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

These may be the steps you're looking for:

Follow these steps to get to the Markers options page:

  1. From the DevExpress menu, select "Options...".
  2. In the tree view on the left, navigate to this folder:

    Editor\Navigation

  3. Select the "Markers" options page. Here you can either disable Locator Beacons or change the color to more closely match your background color (opacity appears to be hard-coded for these).

link|improve this answer
I have it unchecked however it still draws them. – RCIX Oct 1 '09 at 19:20
feedback

This is not an option built into CodeRush. These small triangles in the code are called "markers", and they are used to help you get back to locations where you started a refactoring or consume-first declaration feature. So whenever you apply a refactoring or code provider that takes you away from where you started, one of these markers is dropped. Press Escape to collect the marker (go back to where you started). The options referred to in jasonh's answer affect the drawing of the locator beacons (which show you where the caret is being positioned - helpful if you have a large monitor). If you turned that off following Jason's advice, you might want to turn that back on. Note that the act of collecting a marker by pressing Escape, effectively removes that marker, so using Escape to return to previous locations will prevent markers from remaining inside your code.

Note that markers are not persisted, so if you have a file with existing markers and you want to clear them all, you can close and reopen that file.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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