Sublime Forum

How to always show the current screen selected in the right navigation bar?

#1

The current portion of the visible screen is shown as selected on the right navigation bar ONLY when hovering the mouse over this bar:

image

When I move the mouse out of the navigation bar, the portion is unselected:

image

I think it would be much more practical to have this selection shown there all the time.

How can I make the selection show up in the right navigation bar even without hovering over it?

0 Likes

#2

The following settings control the minimap, shown here with their default values. It sounds like the one you want to turn on is the second one at least:

	// Set to true to draw a border around the visible rectangle on the minimap.
	// The color of the border will be determined by the "minimap_border" key
	// in the color scheme
	"draw_minimap_border": false,

	// Always visualise the viewport on the minimap, as opposed to only
	// showing it on mouse over
	"always_show_minimap_viewport": false,
1 Like

#3

Minimap, that’s the name… :smile:
Perfect, thank you!

1 Like