Where are the bookmarks stored?

I wonder where the bookmarks are stored, I can't find then in the .idea folder inside the project folder? I would like to gitignore anything in the idea folder apart of the bookmarks.

Is there a way to export/import those? There doesn't seem to be a setting in the export feature.

Thanks in advence

0
1 comment
Avatar
Permanently deleted user

Bookmarks are stored in .idea/workspace.xml and look like this:

  <component name="BookmarkManager">
    <bookmark url="file://$PROJECT_DIR$/MyApp/ViewController.m" description="@implementation ViewController" line="17" />
  </component>

They are not intended to be shared with other team members, but you can try to add this file to git.

0

Please sign in to leave a comment.