Hide Bookmark margin

I know in older versions of Komodo Edit you could hide this with a macro. I really don’t use Bookmarks, and I’d like to hide it if possible?

Here you go:

var scimoz = require("ko/editor").scimoz();
if (scimoz) scimoz.setMarginWidthN(0,2);

Note this margin is also used for breakpoints, so you would be unable to use it for either bookmarks or breakpoints.

Thanks for the fast response! Worked like a charm.