Reputation: 5748
Maybe this question is very specific for me, but I'll give it a try. Here's the scenario:
Whenever I use the ModelMaker shortcut I also set the bookmark (7). Why is this? Note that contrary to the "real" shortcut (Ctrl+Shift+7) the bookmark isn't toggled, only set.
This behaviour puzzles me. Does anyone have an explanation? It's not a big problem, since I rarely use that many bookmarks, but it got me curious.
Upvotes: 2
Views: 507
Reputation: 24473
For a couple of refactorings, ModelMaker Code Explorer sets some bookmarks for your convenience.
It is documented somewhere, but I forgot where (:
Edit: it is documented here.
All refactoring operations that modify the IDE edit buffers (optionally) drop bookmark #7 at the current cursor position. Similar to how Extract Method drops bookmarks #8 at the original code and #9 at the extracted method. The bookmark numbers can be customized on the History Tab which also allows disabling dropping specific bookmarks.
Upvotes: 2